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