]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/plugins/Makefile.linux
Change some Makefile.linux files to use COPTS and CFLAGS the same way
[ppp.git] / pppd / plugins / Makefile.linux
index a64256461ba48a2689b8dcc583f221fe509dec28..2fabeba80eacb436014d472ef307cdb90746b0ba 100644 (file)
@@ -1,19 +1,38 @@
 CC     = gcc
-CFLAGS = -g -O2 -I.. -I../../include -fPIC
+COPTS  = -O2 -g
+CFLAGS = $(COPTS) -I.. -I../../include -fPIC
 LDFLAGS        = -shared
-INSTALL        = install
+INSTALL        = install -o root
 
-all:   minconn.so passprompt.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
 
-passprompt.so: passprompt.c
-       $(CC) -o $@ $(LDFLAGS) $(CFLAGS) passprompt.c
+all:   $(PLUGINS)
+       for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d all; done
 
-LIBDIR = /usr/lib/pppd
+%.so: %.c
+       $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^
 
-install: minconn.so passprompt.so
-       version=`awk -F '"' '/VERSION/ { print $$2; }' ../patchlevel.h`; \
-       $(INSTALL) -d $(LIBDIR)/$$version; \
-       $(INSTALL) $? $(LIBDIR)/$$version
\ No newline at end of file
+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