summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-03 09:31:51 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-03 09:31:51 +0100
commit2b6f8123e925e3be8ce7c04eccdd49fc728314a5 (patch)
tree78e86bb428b3bc821ae84d0f6abe86136356bd1a /tests
parent5581340f23b31114d33736c630de849898668f38 (diff)
Separated out libcommon as libreichwein
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile6
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)