blob: 53d105ea5147f766574e3dc671a720e6eb660dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.8 2006/11/26 11:31:13 deraadt Exp $
PROG= ifstated
SRCS= ifstated.c parse.y
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations -Wredundant-decls
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
YFLAGS=
MAN= ifstated.8 ifstated.conf.5
LDADD+=-levent
DPADD+= ${LIBEVENT}
.include <bsd.prog.mk>
|