X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=ab8cf50d94729168f9b3cafa2d85788ba5b63349;hb=67811a647d399db5d188a242827760615a0f86b5;hp=1cf721ae47ac40106c26eb869385739f1b6f2fce;hpb=5012ee48c54b55f1f5661666b362c65e417c62b7;p=ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 1cf721a..ab8cf50 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,10 +1,25 @@ -CC = gcc -CFLAGS = -g -O2 -I.. -I../../include -D_linux_=1 -fPIC +#CC = gcc +COPTS = -O2 -g +CFLAGS = $(COPTS) -I.. -I../../include -fPIC LDFLAGS = -shared -INSTALL = install -o root +INSTALL = install -SUBDIRS = rp-pppoe radius -PLUGINS = minconn.so passprompt.so passwordfd.so +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 winbind.so + +# This setting should match the one in ../Makefile.linux +MPPE=y + +ifdef MPPE +CFLAGS += -DMPPE=1 +endif # include dependencies if present ifeq (.depend,$(wildcard .depend)) @@ -18,13 +33,11 @@ all: $(PLUGINS) $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ VERSION = $(shell awk -F '"' '/VERSION/ { print $$2; }' ../patchlevel.h) -LIBDIR = $(DESTDIR)/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