1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-13 17:21:10 +00:00

Merge pull request #52 from philsmd/master

updated gpu2cpu_rule_test script, we do not need the c++ here
This commit is contained in:
Jens Steube 2016-01-03 20:49:40 +01:00
commit aabfd442d3

View File

@ -5,12 +5,12 @@
GCC := /usr/bin/x86_64-linux-gnu-gcc-4.6 GCC := /usr/bin/x86_64-linux-gnu-gcc-4.6
ROOT := ../../ ROOT := ../../
CFLAGS := -O2 -s -ansi -pipe -W -Wall -I$(ROOT)include/ CFLAGS := -O2 -s -ansi -pipe -W -Wall -std=c99 -I$(ROOT)include/
LIBS := LIBS :=
TARGET := gpu2cpu_rule_test TARGET := gpu2cpu_rule_test
INCLUDE := $(ROOT)src/rp_gpu_on_cpu.cpp cpu_rules.cpp INCLUDE := $(ROOT)src/rp_gpu_on_cpu.c cpu_rules.c
all: ${TARGET}.cpp all: ${TARGET}.c
${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS} ${GCC} ${CFLAGS} ${INCLUDE} $< -o ${TARGET}.bin ${LIBS}
clean: clean: