diff --git a/src/workprover/fastsolver/makefile b/src/workprover/fastsolver/makefile index 7c9c040b..6fc7eebd 100644 --- a/src/workprover/fastsolver/makefile +++ b/src/workprover/fastsolver/makefile @@ -1,8 +1,8 @@ CFLAGS += -std=gnu99 -Wall -Wextra -pedantic -O3 -fPIC -LDFLAGS += -shared -lpthread -lcrypto -Wl,-version-script=main.map -v +LDFLAGS += -shared -Wl,-version-script=main.map libfastsolver.so: main.map common.o pthread.o - $(CC) $(LDFLAGS) -o $@ common.o pthread.o + $(CC) $(LDFLAGS) -o $@ common.o pthread.o -lpthread -lcrypto common.o: common.h common.c pthread.o: common.h pthread.c