diff options
-rw-r--r-- | httpd/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/httpd/Makefile b/httpd/Makefile index 0dae6bf..6aa448c 100644 --- a/httpd/Makefile +++ b/httpd/Makefile @@ -3,8 +3,14 @@ AR ?= ar CXXFLAGS ?= -O2 -Woverloaded-virtual -Wall -fPIC +CXXFLAGS += `tntnet-config --cxxflags` + +### Includes and Defines (add further entries here): + INCLUDES += -I. +### The object files (add further files here): + OBJS = dispatcher.o job.o regex.o worker.o \ listener.o poller.o tntnet.o |