mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
instead of creating them by hand and storing them in the CVS tree. Add gensnmptree to the bootstrap tools (it is used to generated these files). This simplifies the update procedure. Submitted by: ru
19 lines
506 B
Makefile
19 lines
506 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Author: Harti Brandt <harti@freebsd.org>
|
|
|
|
CONTRIB=${.CURDIR}/../../../../contrib/bsnmp
|
|
.PATH: ${CONTRIB}/snmp_mibII
|
|
|
|
MOD= mibII
|
|
SRCS= mibII.c mibII_ifmib.c mibII_ip.c mibII_interfaces.c \
|
|
mibII_ipaddr.c mibII_ifstack.c mibII_rcvaddr.c \
|
|
mibII_nettomedia.c mibII_tcp.c mibII_udp.c mibII_route.c
|
|
XSYM= ipAddrTable ifTable ifRcvAddressEntry ifMIB ipMIB tcpMIB udpMIB \
|
|
ipForward ifIndex linkDown linkUp
|
|
MAN= snmp_mibII.3
|
|
|
|
DEFS= ${MOD}_tree.def
|
|
INCS= snmp_${MOD}.h
|
|
|
|
.include <bsd.lib.mk>
|