diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-14 19:29:40 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-14 19:29:40 +0200 |
commit | 7b87cf906173011fe98155c403a77d6330fa39af (patch) | |
tree | ec213eebff599280c5ba1da72957cd1b31fb9f1c /plugins/static-files | |
parent | def52539028cb024b4e9e9767796face08d645f6 (diff) |
webserver 1.5: Fixed Makefiles
Diffstat (limited to 'plugins/static-files')
-rw-r--r-- | plugins/static-files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/static-files/Makefile b/plugins/static-files/Makefile index e96257d..14c6c17 100644 --- a/plugins/static-files/Makefile +++ b/plugins/static-files/Makefile @@ -31,6 +31,7 @@ endif CXXTESTFLAGS=-Igoogletest/include -Igooglemock/include/ -Igoogletest -Igooglemock LIBS=\ +-lcommon \ -lboost_context \ -lboost_coroutine \ -lboost_program_options \ @@ -40,8 +41,7 @@ LIBS=\ -lboost_regex \ -lpthread \ -lssl -lcrypto \ --ldl \ --lcommon +-ldl ifeq ($(CXX),clang++-10) LIBS+= \ @@ -77,7 +77,7 @@ test-$(PROJECTNAME): $(TESTSRC:.cpp=.o) $(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@ $(PROJECTNAME).so: ../../libcommon/libcommon.a $(SRC:.cpp=.o) - $(CXX) -shared $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@ + $(CXX) $(LDFLAGS) $^ -shared $(LDLIBS) $(LIBS) -o $@ dep: $(TESTSRC:.cpp=.d) |