freebsd-dev/usr.sbin/bsnmpd/modules/Makefile
Brooks Davis a7dc31283a Remove the NATM framework including the en(4), fatm(4), hatm(4), and
patm(4) devices.

Maintaining an address family and framework has real costs when we make
infrastructure improvements.  In the case of NATM we support no devices
manufactured in the last 20 years and some will not even work in modern
motherboards (some newer devices that patm(4) could be updated to
support apparently exist, but we do not currently have support).

With this change, support remains for some netgraph modules that don't
require NATM support code. It is unclear if all these should remain,
though ng_atmllc certainly stands alone.

Note well: FreeBSD 11 supports NATM and will continue to do so until at
least September 30, 2021.  Improvements to the code in FreeBSD 11 are
certainly welcome.

Reviewed by:	philip
Approved by:	harti
2017-04-24 21:21:49 +00:00

38 lines
491 B
Makefile

# $FreeBSD$
.include <src.opts.mk>
.PATH: ${SRCTOP}/contrib/bsnmp/snmpd
SUBDIR= \
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>