summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcp6leasectl/Makefile
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2024-06-06 15:16:58 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2024-06-06 15:16:58 +0000
commit58893d20b28cf110a3cfc69bf40b04fc1d58ec4c (patch)
treecc12f12ca44da4a0b5fadbf874b2198e3c4538b4 /usr.sbin/dhcp6leasectl/Makefile
parentb366eeef12047f542a7ada4824d617f389ca9efc (diff)
dhcp6leasectl
Diffstat (limited to 'usr.sbin/dhcp6leasectl/Makefile')
-rw-r--r--usr.sbin/dhcp6leasectl/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/usr.sbin/dhcp6leasectl/Makefile b/usr.sbin/dhcp6leasectl/Makefile
new file mode 100644
index 00000000000..0af424ace83
--- /dev/null
+++ b/usr.sbin/dhcp6leasectl/Makefile
@@ -0,0 +1,17 @@
+# $OpenBSD: Makefile,v 1.1 2024/06/06 15:16:57 florian Exp $
+
+PROG= dhcp6leasectl
+SRCS= dhcp6leasectl.c
+
+MAN= dhcp6leasectl.8
+
+CFLAGS+= -Wall
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wmissing-declarations
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sbin/dhcp6leased
+LDADD= -lutil
+DPADD= ${LIBUTIL}
+
+.include <bsd.prog.mk>