1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 09:58:57 +00:00
hashcat/tools/rules_test/Makefile
2016-05-26 12:21:08 +02:00

18 lines
385 B
Makefile

##
## Author......: Jens Steube <jens.steube@gmail.com>
## 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