mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 23:10:00 +00:00
3daf0af480
Added docs/team.txt
18 lines
370 B
Makefile
18 lines
370 B
Makefile
##
|
|
## Author......: See docs/credits.txt
|
|
## License.....: MIT
|
|
##
|
|
|
|
GCC := gcc
|
|
ROOT := ../..
|
|
CFLAGS := -O2 -s -pipe -W -Wall -std=c99 -I$(ROOT)/include/ -I$(ROOT)/OpenCL/
|
|
LIBS :=
|
|
TARGET := kernel2cpu_rule_test
|
|
INCLUDE := $(ROOT)/src/rp_kernel_on_cpu.c cpu_rules.c
|
|
|
|
all: ${TARGET}.c
|
|
${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS}
|
|
|
|
clean:
|
|
rm -f *.bin
|