diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-05-16 13:28:52 +0200 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-05-16 13:28:52 +0200 | 
| commit | 6b2a9dabbfad4d64268967a32dff0f1dc55763de (patch) | |
| tree | b3a1f68d8b44090b98ac3bdcf1c8423ebc08c846 /plugins/static-files | |
| parent | 83b25165218281c2a2e98b5e72a0375a7e6a71ca (diff) | |
Makefile cleanup, included missing files
Diffstat (limited to 'plugins/static-files')
| -rw-r--r-- | plugins/static-files/Makefile | 23 | 
1 files changed, 3 insertions, 20 deletions
diff --git a/plugins/static-files/Makefile b/plugins/static-files/Makefile index 14c6c17..9834e96 100644 --- a/plugins/static-files/Makefile +++ b/plugins/static-files/Makefile @@ -28,8 +28,6 @@ else  CXXFLAGS+=-std=c++17  endif -CXXTESTFLAGS=-Igoogletest/include -Igooglemock/include/ -Igoogletest -Igooglemock -  LIBS=\  -lcommon \  -lboost_context \ @@ -62,33 +60,18 @@ LDFLAGS=-L../../libcommon  PROGSRC=\      static-files.cpp -TESTSRC=\ -    test-webserver.cpp \ -    googlemock/src/gmock-all.cpp \ -    googletest/src/gtest-all.cpp \ -    $(PROGSRC) -  SRC=$(PROGSRC)  all: $(PROJECTNAME).so -# testsuite ---------------------------------------------- -test-$(PROJECTNAME): $(TESTSRC:.cpp=.o) -	$(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@ -  $(PROJECTNAME).so: ../../libcommon/libcommon.a $(SRC:.cpp=.o)  	$(CXX) $(LDFLAGS) $^ -shared $(LDLIBS) $(LIBS) -o $@ -dep: $(TESTSRC:.cpp=.d) -  %.d: %.cpp -	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -MM -MP -MF $@ -c $< +	$(CXX) $(CXXFLAGS) -MM -MP -MF $@ -c $<  %.o: %.cpp %.d -	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@ - -googletest/src/%.o: googletest/src/%.cc -	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@ +	$(CXX) $(CXXFLAGS) -c $< -o $@  # dependencies @@ -112,7 +95,7 @@ $(DISTROS): deb-src  debs: $(DISTROS)  clean: -	-rm -f test-$(PROJECTNAME) $(PROJECTNAME) +	-rm -f $(PROJECTNAME)  	-find . -name '*.o' -o -name '*.so' -o -name '*.d' -o -name '*.gcno' -o -name '*.gcda' | xargs rm -f  zip: clean  | 
