X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=e2a680e85f955140432ef832a5a22ab9b0ccfce4;hp=1cf721ae47ac40106c26eb869385739f1b6f2fce;hb=b2c36e6c0e1655aea9b1b0a03a8160f42a26c884;hpb=5012ee48c54b55f1f5661666b362c65e417c62b7 diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 1cf721a..e2a680e 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,10 +1,28 @@ -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 passwordfd.so +#CC = gcc +COPTS = -O2 -g +CFLAGS = $(COPTS) -I.. -I../../include -fPIC +LDFLAGS_SHARED = -shared +INSTALL = install + +# EAP-TLS +CFLAGS += -DUSE_EAPTLS=1 + +DESTDIR = $(INSTROOT)@DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) + +SUBDIRS := 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)) @@ -12,24 +30,22 @@ 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) $^ + $(CC) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED) $(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 || 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