X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;fp=pppd%2Fplugins%2FMakefile.linux;h=b52f284278008247a74935b64e12c293393c9240;hb=8ad0dd2a5c5f23cd210aedba72a43e48026e7436;hp=0000000000000000000000000000000000000000;hpb=7ec1262af43ee60f9e61973439fce12a471b4f99;p=android-x86%2Fexternal-ppp.git diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux new file mode 100644 index 0000000..b52f284 --- /dev/null +++ b/pppd/plugins/Makefile.linux @@ -0,0 +1,41 @@ +CC = gcc +COPTS = -O2 -g +CFLAGS = $(COPTS) -I.. -I../../include -fPIC +LDFLAGS = -shared +INSTALL = install + +DESTDIR = @DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) + +SUBDIRS := rp-pppoe pppoatm radius +# Uncomment the next line to include the radius authentication plugin +# SUBDIRS += radius +PLUGINS := minconn.so passprompt.so passwordfd.so winbind.so + +# 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