X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fplugins%2FMakefile.linux;h=80b0ae01da8a07566fe3729b0855e4e046ad6f5a;hp=7cdfe42737d2b0dc54dea2d21cc92886195d1dc8;hb=6e6bb3246106e680463c106d1ee6b773fc4f9c5a;hpb=d95598c16f6a3feb4846db669601856bad15bb74 diff --git a/pppd/plugins/Makefile.linux b/pppd/plugins/Makefile.linux index 7cdfe42..80b0ae0 100644 --- a/pppd/plugins/Makefile.linux +++ b/pppd/plugins/Makefile.linux @@ -1,10 +1,18 @@ CC = gcc -CFLAGS = -g -O2 -I.. -I../../include -D_linux_=1 -fPIC +COPTS = -O2 -g +CFLAGS = $(COPTS) -I.. -I../../include -fPIC LDFLAGS = -shared -INSTALL = install -o root +INSTALL = install -SUBDIRS = rp-pppoe radius -PLUGINS = minconn.so passprompt.so +DESTDIR = @DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +LIBDIR = $(DESTDIR)/lib/pppd/$(VERSION) + +SUBDIRS := rp-pppoe +# Uncomment the next line to include the radius authentication plugin +# SUBDIRS += radius +PLUGINS := minconn.so passprompt.so passwordfd.so # include dependencies if present ifeq (.depend,$(wildcard .depend)) @@ -18,13 +26,11 @@ all: $(PLUGINS) $(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 + for d in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$d install; done clean: rm -f *.o *.so *.a