X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=0a7ec7badb2a62ec71ed9343b3aa6ed07246b00d;hb=6117748f5e7872c78d32c18e68b5fb7ce3f78670;hp=2fabeba80eacb436014d472ef307cdb90746b0ba;hpb=b289ec4c473338c67bce0cb5712616da2d2493e8;p=ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 2fabeba..0a7ec7b 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,13 +1,18 @@ -CC = gcc +#CC = gcc COPTS = -O2 -g CFLAGS = $(COPTS) -I.. -I../../include -fPIC LDFLAGS = -shared -INSTALL = install -o root +INSTALL = install -SUBDIRS := rp-pppoe +DESTDIR = $(INSTROOT)@DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) + +SUBDIRS := rp-pppoe pppoatm pppol2tp # Uncomment the next line to include the radius authentication plugin -# SUBDIRS += radius -PLUGINS := minconn.so passprompt.so passwordfd.so +SUBDIRS += radius +PLUGINS := minconn.so passprompt.so passwordfd.so winbind.so # include dependencies if present ifeq (.depend,$(wildcard .depend)) @@ -21,13 +26,11 @@ all: $(PLUGINS) $(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 + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install; done clean: rm -f *.o *.so *.a