blob: 55cc688a3d0a24d3c50b17f2492d2d3d6e48d61a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $Id: Makefile,v 1.7 2014/04/14 12:56:21 blambert Exp $
.PATH: ${.CURDIR}/../snmpd
PROG= snmpctl
SRCS= log.c ber.c smi.c snmpclient.c snmpctl.c parser.c agentx.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
.include <bsd.prog.mk>
|