aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: f4b70254a977b408b2b669d8bfc3cdde43e119e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#	$OpenBSD: Makefile,v 1.2 2014/12/05 20:02:41 florian Exp $

PROG=	slowcgi
SRCS=	slowcgi.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
LDADD=	-levent
DPADD=	${LIBEVENT}
MAN=	slowcgi.8
.include <bsd.prog.mk>