Check in before surgery

This commit is contained in:
John Newby
2019-08-05 12:25:53 +02:00
parent bf2d30d064
commit 74e20f3a9d
5 changed files with 93 additions and 3 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ DEBUG ?= 0
ifeq ($(DEBUG), 1)
CFLAGS =-DDEBUG=1
else
CFLAGS=-DNDEBUG
CFLAGS=-DNDEBUG -Ofast
endif
CC = gcc
@@ -15,7 +15,7 @@ INCLUDEPATH = -Iinclude
all: test erl_ecrecover
test: src/test.c src/base64.c target/debug/libecrecover.so
test: src/test.c src/base64.c target/release/libecrecover.so
$(CC) -o $@ $^ $(INCLUDEPATH) $(CFLAGS) $(LDPATH)
./test