summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcpleasectl/Makefile
blob: af564dda3ccc7338c9c2bfcc5e571e60f58c313f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.1 2021/02/26 16:16:37 florian Exp $

PROG=	dhcpleasectl
SRCS=	dhcpleasectl.c parser.c

MAN=	dhcpleasectl.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/dhcpleased
LDADD=	-lutil
DPADD=	${LIBUTIL}

.include <bsd.prog.mk>