1# $OpenBSD: Makefile,v 1.2 2014/12/05 20:02:41 florian Exp $ 2 3PROG= slowcgi 4SRCS= slowcgi.c 5CFLAGS+= -Wall 6CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes 7CFLAGS+= -Wmissing-declarations 8CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual 9CFLAGS+= -Wsign-compare 10LDADD= -levent 11DPADD= ${LIBEVENT} 12MAN= slowcgi.8 13.include <bsd.prog.mk> 14