14 lines
189 B
Makefile
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
|