summaryrefslogtreecommitdiff
path: root/snmpd/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'snmpd/Makefile.in')
-rw-r--r--snmpd/Makefile.in45
1 files changed, 0 insertions, 45 deletions
diff --git a/snmpd/Makefile.in b/snmpd/Makefile.in
deleted file mode 100644
index e248978617d0..000000000000
--- a/snmpd/Makefile.in
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (c) 2001-2003
-# Fraunhofer Institute for Open Communication Systems (FhG Fokus).
-# All rights reserved.
-#
-# Author: Harti Brandt <harti@freebsd.org>
-#
-# $Begemot: bsnmp/trunk/snmpd/Makefile.in 2117 2015-09-16 14:09:31Z brandt_h $
-#
-
-PROG= bsnmpd
-SRCS= tree.c main.c action.c config.c export.c trap.c
-SRCS+= trans_udp.c trans_lsock.c
-MAN1= bsnmpd.1
-MAN3= snmpmod.3
-MANFILTER= sed -e 's%@MODPATH@%${LIBDIR}/%g' \
- -e 's%@DEFPATH@%${DEFSDIR}/%g' \
- -e 's%@MIBSPATH@%${MIBSDIR}/%g'
-
-XSYM= snmpMIB begemotSnmpdModuleTable begemotSnmpd begemotTrapSinkTable \
- sysUpTime snmpTrapOID coldStart authenticationFailure \
- begemotSnmpdLocalPortTable begemotSnmpdTransUdp begemotSnmpdTransLsock \
- freeBSDVersion freeBSD
-
-BMIBS= FOKUS-MIB.txt BEGEMOT-MIB.txt BEGEMOT-SNMPD.txt
-DEFS= tree.def
-INCS= snmpmod.h
-
-CFLAGS+= -I$(builddir)/. -I${srcdir} -I${srcdir}/../lib
-LDFLAGS+= $(LIBDL) -export-dynamic
-
-$(PROG): $(SRCS:.c=.lo) oid.h tree.h
- $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ $(SRCS:.c=.lo) \
- $(builddir)/../lib/libbsnmp.la $(LIBEV) $(LIBWRAP)
-
-CLEANFILES += tree.c tree.h oid.h *.3out *.1out
-
-GENSNMPTREE= $(builddir)/../gensnmptree/gensnmptree -I${srcdir}/../lib
-
-tree.c tree.h: tree.def ../gensnmptree/gensnmptree
- ${GENSNMPTREE} -l <${srcdir}/tree.def
-
-oid.h: tree.def ../gensnmptree/gensnmptree
- ${GENSNMPTREE} <${srcdir}/tree.def -e ${XSYM} >$@
-
-$(SRCS:.c=.lo): oid.h