ecrecover/Makefile
2019-08-01 15:58:21 +02:00

14 lines
209 B
Makefile

CC = gcc
LIBS = -llibecrecover.so
LDPATH = -Ltarget/debug
%.o: %.c $(DEPS)
$(CC) -c -o $@ $<
test: src/test.c include/ecrecover.h target/debug/libecrecover.so
$(CC) -o $@ $^ $(CFLAGS) $(LDPATH)
./test