aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReyk Floeter <reyk@esdenera.com>2014-07-13 01:15:01 +0200
committerReyk Floeter <reyk@esdenera.com>2014-07-13 01:15:01 +0200
commit6d196c9daa83925cc04f8019c1c0065317f6efdf (patch)
tree484726f0f6df8ff02e9cb1943ee35d8711417dd6 /Makefile
parent9edde19e282ba13de068a4dc7e717152aaae77b8 (diff)
downloadhttpd-6d196c9daa83925cc04f8019c1c0065317f6efdf.tar.gz
httpd-6d196c9daa83925cc04f8019c1c0065317f6efdf.zip
Simple file serving
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0aecfb2..539eb5b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,13 @@
PROG= httpd
SRCS= parse.y
-SRCS+= config.c control.c httpd.c log.c proc.c server.c
+SRCS+= config.c control.c httpd.c log.c proc.c
+SRCS+= server.c server_http.c server_file.c
MAN= httpd.8 httpd.conf.5
LDADD= -levent -lssl -lcrypto -lutil
DPADD= ${LIBEVENT} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}
-DEBUG= -g -DDEBUG=3
+#DEBUG= -g -DDEBUG=3
CFLAGS+= -Wall -I${.CURDIR} -Werror
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations