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