16 lines
354 B
Makefile
16 lines
354 B
Makefile
PROG= subagent_ntpd
|
|
SRCS= subagent_ntpd.c mib.c log.c
|
|
MAN=
|
|
|
|
CFLAGS+= -Wall -I${.CURDIR}
|
|
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
|
|
CFLAGS+= -Wmissing-declarations
|
|
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
|
|
CFLAGS+= -Wsign-compare
|
|
|
|
LDADD= -lagentx -levent
|
|
DPADD= ${LIBAGENTX} ${LIBEVENT}
|
|
BINDIR= /usr/libexec/snmpd/
|
|
|
|
.include <bsd.prog.mk>
|