blob: 73bd40d9d11a492390a083f683f340bfa5ee529b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.4 2004/12/14 10:24:15 mpf 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
YFLAGS=
MAN= ifstated.8
LDADD+=-lutil -levent
.include <bsd.prog.mk>
|