blob: 2fe5a389f386452e07a53bc2e356fda90d98fc2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.1 2009/06/01 20:59:45 michele Exp $
.PATH: ${.CURDIR}/../ldpd
PROG= ldpctl
SRCS= buffer.c imsg.c log.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
MAN= ldpctl.8
.include <bsd.prog.mk>
|