X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=0230da15879b47ef60bac73ccac18b1f480beca8;hb=9c7ba0d42dee5e3f84ecb6e4fcdbefc6c1cd965c;hp=80b0ae01da8a07566fe3729b0855e4e046ad6f5a;hpb=03a755882397bda31e3e44d3aa51034338ea3ce6;p=ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 80b0ae0..0230da1 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,18 +1,34 @@ -CC = gcc -COPTS = -O2 -g -CFLAGS = $(COPTS) -I.. -I../../include -fPIC -LDFLAGS = -shared -INSTALL = install +CROSS_COMPILE=@CROSS_COMPILE@ +CC=$(CROSS_COMPILE)@CC@ +COPTS=@CFLAGS@ -DESTDIR = @DESTDIR@ +PREFIX = @DESTDIR@ +DESTDIR = $(INSTROOT)$(PREFIX) BINDIR = $(DESTDIR)/sbin MANDIR = $(DESTDIR)/share/man/man8 -LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) +LIBDIR = $(INSTROOT)@LIBDIR@ +INCDIR = $(INSTROOT)@INCDIR@ +VERSION = @VERSION@ +PLUGINDIR = $(LIBDIR)/pppd/$(VERSION) + +CFLAGS = $(COPTS) -I.. -I../../include -fPIC +LDFLAGS_SHARED = -shared +INSTALL = install -SUBDIRS := rp-pppoe +# EAP-TLS +CFLAGS += -DUSE_EAPTLS=1 + +SUBDIRS := 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 + +# 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)) @@ -20,22 +36,20 @@ include .depend endif all: $(PLUGINS) - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all; done + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all || exit $$?; done %.so: %.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ - -VERSION = $(shell awk -F '"' '/VERSION/ { print $$2; }' ../patchlevel.h) + $(CC) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED) $(CFLAGS) $^ install: $(PLUGINS) - $(INSTALL) -d $(LIBDIR) - $(INSTALL) $? $(LIBDIR) - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install; done + $(INSTALL) -d $(PLUGINDIR) + $(INSTALL) $? $(PLUGINDIR) + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install || exit $$?; done clean: rm -f *.o *.so *.a - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d clean; done + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d clean || exit $$?; done depend: $(CPP) -M $(CFLAGS) *.c >.depend - for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d depend; done + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d depend || exit $$?; done