X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=userapps%2Fopensource%2Fnet-snmp%2Fagent%2Fmibgroup%2Fexamples%2FMakefile.dlmod;fp=userapps%2Fopensource%2Fnet-snmp%2Fagent%2Fmibgroup%2Fexamples%2FMakefile.dlmod;h=0000000000000000000000000000000000000000;hb=cf3b25a5003e531e4599b2a56fa007f272198570;hp=13bf3e45ad0581c16cec5dbfa92f268477beb39e;hpb=59e02c1be2c9b373846b0789fbd5b7ef46f0927f;p=bcm963xx.git diff --git a/userapps/opensource/net-snmp/agent/mibgroup/examples/Makefile.dlmod b/userapps/opensource/net-snmp/agent/mibgroup/examples/Makefile.dlmod deleted file mode 100755 index 13bf3e45..00000000 --- a/userapps/opensource/net-snmp/agent/mibgroup/examples/Makefile.dlmod +++ /dev/null @@ -1,34 +0,0 @@ -# -# Makefile for dynamically loadable module `example' -# -#DLMODDIR = $(libdir)/snmp/dlmod -#UCDTOPDIR = $(top_srcdir) -DLMODDIR = /usr/local/lib/snmp/dlmod -UCDTOPDIR = /usr/home/strauss/src/ucd-snmp-ibr -TARG = example.so -OBJS = example.o -CC = gcc -CFLAGS = -I$(UCDTOPDIR) -I$(UCDTOPDIR)/snmplib -I$(UCDTOPDIR)/agent -I$(UCDTOPDIR)/agent/mibgroup -shared -fPIC -#LD = ld -#LDFLAGS = -G -o -LD = gcc -shared -o -LDFLAGS = -INSTALL = install -LIBS = - -all: $(TARG) - -.c.o: - $(CC) $(CFLAGS) -o $@ -c $< - -$(TARG): $(OBJS) - $(LD) $(LDFLAGS) $@ $(OBJS) $(LIBS) - -clean: - rm -f $(OBJS) $(TARG) - -install: all installdirs - $(INSTALL) $(TARG) $(DLMODDIR) - -installdirs: - @$(SHELL) $(UCDTOPDIR)/mkinstalldirs $(DLMODDIR)