X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fplugins%2Fradius%2Fradiusclient%2Fetc%2FMakefile.in;h=6c4fa37e7283f6b6688ad11f40304f7529577954;hp=088921b94a863a5b2900cd88aca62160dcfe1bb4;hb=29d737aafe8a1b61687a9b9e910b2d776dfc0203;hpb=d95598c16f6a3feb4846db669601856bad15bb74 diff --git a/pppd/plugins/radius/radiusclient/etc/Makefile.in b/pppd/plugins/radius/radiusclient/etc/Makefile.in index 088921b..6c4fa37 100644 --- a/pppd/plugins/radius/radiusclient/etc/Makefile.in +++ b/pppd/plugins/radius/radiusclient/etc/Makefile.in @@ -11,7 +11,7 @@ # PARTICULAR PURPOSE. # -# $Id: Makefile.in,v 1.1 2002/01/22 16:03:01 dfs Exp $ +# $Id: Makefile.in,v 1.5 2002/10/05 17:49:00 fcusack Exp $ # # Copyright (C) 1997,1998 Lars Fenneberg # @@ -94,10 +94,12 @@ CLEANFILES = *~ radiusclient.conf sbindir = @sbindir@ pkgsysconfdir = @pkgsysconfdir@ pkgsysconf_DATA = issue port-id-map radiusclient.conf \ - dictionary dictionary.ascend dictionary.compat dictionary.merit + dictionary dictionary.ascend dictionary.compat dictionary.merit \ + dictionary.microsoft EXTRA_DIST = issue port-id-map dictionary dictionary.ascend \ - dictionary.compat dictionary.merit servers radiusclient.conf.in + dictionary.compat dictionary.merit dictionary.microsoft \ + realms servers radiusclient.conf.in mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../config.h CONFIG_CLEAN_FILES = @@ -173,7 +175,7 @@ uninstall: uninstall-pkgsysconfDATA uninstall-local install-strip: $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install installdirs: - $(mkinstalldirs) $(DATADIR)$(pkgsysconfdir) + $(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir) mostlyclean-generic: @@ -213,13 +215,16 @@ radiusclient.conf: radiusclient.conf.in -e 's|@pkgsysconf''dir@|$(pkgsysconfdir)|g' \ <$(srcdir)/radiusclient.conf.in >radiusclient.conf -install-data-local: servers - $(mkinstalldirs) $(pkgsysconfdir); \ - echo " $(INSTALL) -m600 $(srcdir)/servers $(pkgsysconfdir)/servers"; \ - $(INSTALL) -m600 $(srcdir)/servers $(pkgsysconfdir)/servers +install-data-local: realms servers + $(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir); \ + echo " $(INSTALL) -m600 $(srcdir)/realms $(DESTDIR)$(pkgsysconfdir)/realms"; \ + $(INSTALL) -m600 $(srcdir)/realms $(DESTDIR)$(pkgsysconfdir)/realms; \ + echo " $(INSTALL) -m600 $(srcdir)/servers $(DESTDIR)$(pkgsysconfdir)/servers"; \ + $(INSTALL) -m600 $(srcdir)/servers $(DESTDIR)$(pkgsysconfdir)/servers uninstall-local: - rm -f $(pkgsysconfdir)/servers + rm -f $(DESTDIR)$(pkgsysconfdir)/realms + rm -f $(DESTDIR)$(pkgsysconfdir)/servers # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded.