You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/tools/rules_test/Makefile

18 lines
393 B

##
## 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