1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 09:58:57 +00:00
hashcat/tools/rules_test/Makefile

18 lines
396 B
Makefile
Raw Normal View History

2015-12-04 14:47:52 +00:00
##
## Author......: Jens Steube <jens.steube@gmail.com>
## License.....: MIT
##
2015-12-06 18:01:22 +00:00
GCC := /usr/bin/x86_64-linux-gnu-gcc-4.6
2015-12-04 14:47:52 +00:00
ROOT := ../../
CFLAGS := -O2 -s -ansi -pipe -W -Wall -std=c99 -I$(ROOT)include/
2015-12-04 14:47:52 +00:00
LIBS :=
TARGET := gpu2cpu_rule_test
INCLUDE := $(ROOT)src/rp_gpu_on_cpu.c cpu_rules.c
2015-12-04 14:47:52 +00:00
all: ${TARGET}.c
2015-12-04 14:47:52 +00:00
${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS}
clean:
rm -f *.bin