blob: c5d1b2a666979ce1b9057e792e8afd4ca1888f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.1 2005/01/28 14:18:46 claudio Exp $
.PATH: ${.CURDIR}/../ospfd
PROG= ospfctl
SRCS= buffer.c imsg.c log.c ospfctl.c parser.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CLFAGS+= -Wmissing-declarations -Wredundant-decls
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../ospfd
MAN= ospfctl.8
.include <bsd.prog.mk>
|