blob: da2c34289d91d00e1f7d5c8982728142cc1c13e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $Id: Makefile,v 1.2 2007/12/28 17:22:32 reyk Exp $
.PATH: ${.CURDIR}/../snmpd
PROG= snmpctl
SRCS= buffer.c imsg.c log.c smi.c snmpctl.c parser.c
MAN= snmpctl.8
CFLAGS+= -Wall -I${.CURDIR} -I${.CURDIR}/../snmpd
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare -Wbounded
.include <bsd.prog.mk>
|