summaryrefslogtreecommitdiff
path: root/contrib/bsnmp/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bsnmp/Makefile.in')
-rw-r--r--contrib/bsnmp/Makefile.in38
1 files changed, 38 insertions, 0 deletions
diff --git a/contrib/bsnmp/Makefile.in b/contrib/bsnmp/Makefile.in
new file mode 100644
index 000000000000..72a159d0277c
--- /dev/null
+++ b/contrib/bsnmp/Makefile.in
@@ -0,0 +1,38 @@
+# Copyright (c) 2001-2003
+# Fraunhofer Institute for Open Communication Systems (FhG Fokus).
+# All rights reserved.
+#
+# Author: Harti Brandt <harti@freebsd.org>
+#
+# $Begemot: bsnmp/Makefile.in,v 1.4 2005/10/04 11:21:22 brandt_h Exp $
+#
+
+SUBDIR= lib gensnmptree snmpd snmp_mibII snmp_ntp
+
+ifeq "$(HAVE_LIBSMI)" "yes"
+SUBDIR += gensnmpdef
+endif
+
+all:
+ +@for f in $(SUBDIR) ; do \
+ echo "==> $$f" ; \
+ if ! $(SUBMAKE) -C $$f all ; then \
+ break ; \
+ fi ; \
+ done
+
+install:
+ +@for f in $(SUBDIR) ; do \
+ echo "==> $$f" ; \
+ if ! $(SUBMAKE) -C $$f install ; then \
+ break ; \
+ fi ; \
+ done
+
+clean:
+ +@for f in $(SUBDIR) ; do \
+ echo "==> $$f" ; \
+ if ! $(SUBMAKE) -C $$f clean ; then \
+ break ; \
+ fi ; \
+ done