]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/plugins/Makefile.linux
pppd: Fix a stack variable overflow in MSCHAP-v2
[ppp.git] / pppd / plugins / Makefile.linux
index b33ab273c4285dc3ab3df6c956af0f650ae8366e..0a7ec7badb2a62ec71ed9343b3aa6ed07246b00d 100644 (file)
@@ -1,8 +1,41 @@
-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
+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
+
+# 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