1# $OpenBSD: Makefile,v 1.2 2024/01/26 18:11:49 job Exp $ 2 3PROG= bgplgd 4SRCS= bgplgd.c slowcgi.c qs.c 5CFLAGS+= -Wall 6CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes 7CLFAGS+= -Wmissing-declarations -Wredundant-decls 8CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual 9CFLAGS+= -Wsign-compare 10CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../bgpd 11LDADD= -levent 12DPADD= ${LIBEVENT} 13MAN= bgplgd.8 14 15.include <bsd.prog.mk> 16