- (agent/snmp_vars, agent/mibgroup): Dave Shield split up the
  snmp_vars.c and related files into pieces for easier management.
  The results of his work are in the new agent/mibgroup directory.


git-svn-id: file:///home/hardaker/lib/sf-bkups/net-snmp-convert-svnrepo/trunk@701 06827809-a52a-0410-b366-d66718629ded
diff --git a/agent/mibgroup/Makefile.in b/agent/mibgroup/Makefile.in
new file mode 100644
index 0000000..b722c0a
--- /dev/null
+++ b/agent/mibgroup/Makefile.in
@@ -0,0 +1,29 @@
+
+SHELL = /bin/sh
+srcdir = @srcdir@
+VPATH = @srcdir@
+@SET_MAKE@
+
+CFLAGS=@CFLAGS@
+CPPFLAGS=@CPPFLAGS@ -I../.. -I$(srcdir)/../.. -I$(srcdir)/../../snmplib
+LDFLAGS=@LDFLAGS@
+
+CC = @CC@ $(CPPFLAGS)
+
+OBJS = system.o interfaces.o at.o ip.o icmp.o tcp.o udp.o snmp.o
+SRCS = system.c interfaces.c at.c ip.c icmp.c tcp.c udp.c snmp.c
+ 
+
+all: $(OBJS)
+
+TAGS: $(SRCS)
+	etags *.c *.h
+
+clean:
+	rm -f *.o
+
+depend: 
+	makedepend $(CPPFLAGS) *.c
+	perl -n -i.bak -e ' if (/^# DO NOT DELETE THIS LINE/) {$$doit=1;} if ($$doit == 1) {s#/usr/include/[^\s]+##g ; print if (! /^\w+\.o:\s*$$/);} else {print;}' Makefile
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.