1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-09 17:38:58 +00:00
hashcat/tools/rules_test/Makefile
2015-12-06 19:01:22 +01:00

18 lines
393 B
Makefile

##
## Author......: Jens Steube <jens.steube@gmail.com>
## License.....: MIT
##
GCC := /usr/bin/x86_64-linux-gnu-gcc-4.6
ROOT := ../../
CFLAGS := -O2 -s -ansi -pipe -W -Wall -I$(ROOT)include/
LIBS :=
TARGET := gpu2cpu_rule_test
INCLUDE := $(ROOT)src/rp_gpu_on_cpu.cpp cpu_rules.cpp
all: ${TARGET}.cpp
${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS}
clean:
rm -f *.bin