1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5.PATH: ${.CURDIR}/../../../contrib/bsnmp/snmpd 6 7.if ${MK_ATM} != "no" 8_snmp_atm= snmp_atm 9.endif 10 11SUBDIR= ${_snmp_atm} \ 12 snmp_bridge \ 13 snmp_hostres \ 14 snmp_lm75 \ 15 snmp_mibII \ 16 snmp_target \ 17 snmp_usm \ 18 snmp_vacm \ 19 20.if ${MK_HAST} != "no" 21SUBDIR+=snmp_hast 22.endif 23 24.if ${MK_PF} != "no" 25SUBDIR+=snmp_pf 26.endif 27 28.if ${MK_NETGRAPH_SUPPORT} != "no" 29SUBDIR+=snmp_netgraph 30.endif 31 32.if ${MK_WIRELESS} != "no" 33SUBDIR+=snmp_wlan 34.endif 35 36INCS= snmpmod.h 37INCSDIR= ${INCLUDEDIR}/bsnmp 38 39.include <bsd.prog.mk> 40