X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=6403e3d477e3bf427f5830743dd9cbc88fc6ac94;hb=HEAD;hp=7cdfe42737d2b0dc54dea2d21cc92886195d1dc8;hpb=d95598c16f6a3feb4846db669601856bad15bb74;p=ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux deleted file mode 100644 index 7cdfe42..0000000 --- a/pppd/plugins/Makefile.linux +++ /dev/null @@ -1,35 +0,0 @@ -CC = gcc -CFLAGS = -g -O2 -I.. -I../../include -D_linux_=1 -fPIC -LDFLAGS = -shared -INSTALL = install -o root - -SUBDIRS = rp-pppoe radius -PLUGINS = minconn.so passprompt.so - -# include dependencies if present -ifeq (.depend,$(wildcard .depend)) -include .depend -endif - -all: $(PLUGINS) - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all; done - -%.so: %.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ - -VERSION = $(shell awk -F '"' '/VERSION/ { print $$2; }' ../patchlevel.h) -LIBDIR = $(DESTDIR)/usr/lib/pppd/$(VERSION) - -install: $(PLUGINS) - $(INSTALL) -d $(LIBDIR) - $(INSTALL) $? $(LIBDIR) - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d INSTALL=$(INSTALL) \ - LIBDIR=$(LIBDIR) install; done - -clean: - rm -f *.o *.so *.a - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d clean; done - -depend: - $(CPP) -M $(CFLAGS) *.c >.depend - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d depend; done