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