From 3d88bcbb432cda12794bc4e0aac180e5489901ff Mon Sep 17 00:00:00 2001 From: Reyk Floeter Date: Sat, 12 Jul 2014 19:00:52 +0200 Subject: Import httpd experiment based on relayd. --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..066c649 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD$ + +PROG= httpd +SRCS= parse.y +SRCS+= config.c control.c httpd.c log.c proc.c server.c +MAN= httpd.8 httpd.conf.5 + +LDADD= -levent -lssl -lcrypto -lutil +DPADD= ${LIBEVENT} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL} + +CFLAGS+= -Wall -I${.CURDIR} -Werror +CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CFLAGS+= -Wmissing-declarations +CFLAGS+= -Wshadow -Wpointer-arith +CFLAGS+= -Wsign-compare +CLEANFILES+= y.tab.h + +.include -- cgit v1.2.3-54-g00ecf