blob: f9df063b4dec7289aaf0dcbce2a904956ac454d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.2 2005/04/04 22:22:55 hshoexer Exp $
PROG= ipsecctl
MAN= ipsecctl.8 ipsec.conf.5
SRCS= ipsecctl.c pfkey.c parse.y
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
YFLAGS=
.include <bsd.prog.mk>
|