blob: 4bbc6e94c249935641251616ed2bf7135b73ca24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $OpenBSD: Makefile,v 1.3 2004/02/05 02:26:23 mcbride Exp $
PROG= ifstated
SRCS= ifstated.c parse.y
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CLFAGS+= -Wmissing-declarations -Wredundant-decls
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
MAN= ifstated.8
LDADD+=-lutil -levent
.include <bsd.prog.mk>
|