updated rp_gpu_on_cpu rules test script, we do not need the cpp extension anymore
[hashcat.git] / tools / rules_test / Makefile
1 ##
2 ## Author......: Jens Steube <jens.steube@gmail.com>
3 ## License.....: MIT
4 ##
5
6 GCC := /usr/bin/x86_64-linux-gnu-gcc-4.6
7 ROOT := ../../
8 CFLAGS := -O2 -s -ansi -pipe -W -Wall -std=c99 -I$(ROOT)include/
9 LIBS :=
10 TARGET := gpu2cpu_rule_test
11 INCLUDE := $(ROOT)src/rp_gpu_on_cpu.c cpu_rules.c
12
13 all: ${TARGET}.c
14 ${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS}
15
16 clean:
17 rm -f *.bin