blob: f7187fde58fce9293495e7cbc026278b13629e37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $Id: Makefile,v 1.5 2013/10/01 12:41:48 reyk Exp $
.PATH: ${.CURDIR}/../snmpd
PROG= snmpctl
SRCS= log.c ber.c smi.c snmpclient.c snmpctl.c parser.c
MAN= snmpctl.8
LDADD= -lutil
DPADD= ${LIBUTIL}
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>
|