summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldpctl/Makefile
blob: 0d13f29cb7b554564beaa9cf36220b5753d3a0c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$OpenBSD: Makefile,v 1.4 2017/01/20 12:19:18 benno Exp $

.PATH:		${.CURDIR}/../ldpd

PROG=	ldpctl
SRCS=	util.c log.c logmsg.c ldpctl.c parser.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ldpd
LDADD=	-lutil
DPADD=	${LIBUTIL}
MAN=	ldpctl.8

.include <bsd.prog.mk>