blob: b605aaa10c68c27679a3266b3f9952ae4065c4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.8 2019/01/17 06:21:46 tedu 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>
|