diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index 5903b52..d4c53cb 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -7,7 +7,7 @@ CXXFLAGS+= -I. -fPIE CXXTESTFLAGS= LIBS=\ --lcommon \ +-lreichwein \ -lboost_context \ -lboost_filesystem \ -lboost_timer \ @@ -17,7 +17,7 @@ LIBS=\ -lssl -lcrypto \ -ldl -LDFLAGS+=-pie -L../libcommon +LDFLAGS+=-pie TESTSRC=\ test-environment.cpp \ @@ -27,7 +27,7 @@ TESTSRC=\ build: $(PROJECTNAME) ./$(PROJECTNAME) -$(PROJECTNAME): ../libcommon/libcommon.a $(TESTSRC:.cpp=.o) +$(PROJECTNAME): $(TESTSRC:.cpp=.o) $(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@ dep: $(TESTSRC:.cpp=.d) |