X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=a7cf5d82edf8d43ee6d42d12903b95527c6a9f21;hb=da7530a7e013e1d08982168c897f1d0ea2b8829d;hp=b33ab273c4285dc3ab3df6c956af0f650ae8366e;hpb=2b4e267c6dab168d8c3bb61021e285c0a43042e4;p=ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index b33ab27..a7cf5d8 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,8 +1,37 @@ CC = gcc -CFLAGS = -g -O2 -I.. -I../../include +CFLAGS = -g -O2 -I.. -I../../include -fPIC LDFLAGS = -shared +INSTALL = install -o root -all: minconn.so +SUBDIRS := rp-pppoe +# Uncomment the next line to include the radius authentication plugin +# SUBDIRS += radius +PLUGINS := minconn.so passprompt.so passwordfd.so -minconn.so: minconn.c - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) minconn.c +# 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) +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 + +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