blob: 30d20253947f7e8681c3171c26fe7ce0a48b045c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.1 2006/10/18 16:15:25 norby Exp $
.PATH: ${.CURDIR}/../ripd
PROG= ripctl
SRCS= buffer.c imsg.c log.c ripctl.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}/../ripd
MAN= ripctl.8
.include <bsd.prog.mk>
|