diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 | 
1 files changed, 6 insertions, 3 deletions
@@ -9,7 +9,7 @@ CXX=clang++  endif  ifeq ($(shell which $(CXX)),) -#CXX=g++-9 +CXX=g++-9  endif  ifeq ($(CXXFLAGS),) @@ -19,7 +19,7 @@ endif  # -fprofile-instr-generate -fcoverage-mapping  # gcc:--coverage -CXXFLAGS+= -Wall -I. +CXXFLAGS+= -Wall -I. -DVERSION=\"$(VERSION)\"  CXXFLAGS+= -pthread  ifeq ($(CXX),clang++-10) @@ -58,9 +58,12 @@ endif  PROGSRC=\      config.cpp \ +    file.cpp \      http.cpp \ +    https.cpp \      http_debian10.cpp \ -    plugin.cpp +    plugin.cpp \ +    server.cpp  TESTSRC=\      test-webserver.cpp \  | 
