mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
24 lines
346 B
Makefile
24 lines
346 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd
|
|
|
|
.if ${MK_ATM} != "no"
|
|
_snmp_atm= snmp_atm
|
|
.endif
|
|
|
|
SUBDIR= ${_snmp_atm} \
|
|
snmp_bridge \
|
|
snmp_hostres \
|
|
snmp_mibII \
|
|
snmp_pf
|
|
|
|
.if ${MK_NETGRAPH_SUPPORT} != "no"
|
|
SUBDIR+=snmp_netgraph
|
|
.endif
|
|
|
|
INCS= snmpmod.h
|
|
INCSDIR= ${INCLUDEDIR}/bsnmp
|
|
|
|
.include <bsd.prog.mk>
|