freebsd-dev/usr.sbin/bsnmpd/modules/Makefile
Enji Cooper 489b7fc0a4 Add smilint target to subdir targets so "make smilint" here will run
the smilint target in subdirs

While here, convert a path that's .CURDIR relative to SRCTOP

MFC after:	1 week
Sponsored by:	Dell EMC Isilon
2017-01-17 03:44:45 +00:00

42 lines
554 B
Makefile

# $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>