diff options
Diffstat (limited to 'tests/Makefile')
| -rw-r--r-- | tests/Makefile | 8 | 
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index 8df5a45..898afbf 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -17,7 +17,7 @@ CXXFLAGS+= -I. -I.. -fPIE  CXXTESTFLAGS= -CXXFLAGS+=$(shell pkg-config --cflags fmt fcgi) +CXXFLAGS+=$(shell pkg-config --cflags fcgi)  LIBS+=\  -lreichwein \ @@ -29,7 +29,7 @@ LIBS+=\  -lpthread \  -lssl -lcrypto \  -ldl \ -$(shell pkg-config --libs fmt fcgi) +$(shell pkg-config --libs fcgi)  LDFLAGS+=-pie @@ -37,6 +37,7 @@ UNITS=\      auth.cpp \      config.cpp \      error.cpp \ +    fastcgiprocess.cpp \      http.cpp \      plugin.cpp \      privileges.cpp \ @@ -57,7 +58,6 @@ TESTSRC=\      test-server.cpp \      test-statistics.cpp \      test-webserver.cpp \ -    fastcgiprocess.cpp \      helper.cpp \      webserverprocess.cpp \      websocketserverprocess.cpp @@ -93,6 +93,8 @@ config.o: ../config.cpp  	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@  error.o: ../error.cpp  	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@ +fastcgiprocess.o: ../plugins/fcgi/fastcgiprocess.cpp +	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@  http.o: ../http.cpp  	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@  plugin.o: ../plugin.cpp  | 
