ecrecover/Makefile
2019-08-02 10:53:39 +02:00

14 lines
189 B
Makefile

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