X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=ab8cf50d94729168f9b3cafa2d85788ba5b63349;hp=1c99dc00cfd0f549f258aa033d42a5003a61a1c1;hb=2b05e22c62095e97dd0a97e4b5588402c2185071;hpb=95d719f47943c479df4d7bf13eb928567392166d diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 1c99dc0..ab8cf50 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,11 +1,48 @@ -CC = gcc -CFLAGS = -g -O2 -I.. -I../../include +#CC = gcc +COPTS = -O2 -g +CFLAGS = $(COPTS) -I.. -I../../include -fPIC LDFLAGS = -shared +INSTALL = install -all: minconn.so passprompt.so +DESTDIR = $(INSTROOT)@DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) -minconn.so: minconn.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) minconn.c +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 -passprompt.so: passprompt.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) passprompt.c +# 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)) +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) + +install: $(PLUGINS) + $(INSTALL) -d $(LIBDIR) + $(INSTALL) $? $(LIBDIR) + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d 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