summaryrefslogtreecommitdiff
path: root/sbin/ipsecctl/Makefile
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-04-04 22:19:51 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2005-04-04 22:19:51 +0000
commit6baa13ce4e00828df38532fce0ad100016b95f2e (patch)
treec001874f17dc6c5d8621d3970f5256bf64ed838d /sbin/ipsecctl/Makefile
parent7bc1c4c87aa82ab5c718ae2d2489d6779d3865c3 (diff)
Add ipsecctl utility, work in progress
ok deraadt
Diffstat (limited to 'sbin/ipsecctl/Makefile')
-rw-r--r--sbin/ipsecctl/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/sbin/ipsecctl/Makefile b/sbin/ipsecctl/Makefile
new file mode 100644
index 00000000000..cf171012ce4
--- /dev/null
+++ b/sbin/ipsecctl/Makefile
@@ -0,0 +1,16 @@
+# $Id: Makefile,v 1.1 2005/04/04 22:19:50 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>