import from HEAD:
[freeradius.git] / Makefile
index b4be426..119a3a0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 #
-# Makefile     Makefile for the cistron-radius package.
+# Makefile
 #
 #              NOTE: This top-level Makefile must not
 #              use GNU-make extensions. The lower ones can.
@@ -9,7 +9,9 @@
 
 include Make.inc
 
-SUBDIRS                = src raddb doc scripts
+.PHONY: all clean install
+
+SUBDIRS                = ${LIBLTDLPATH} src raddb scripts doc
 WHAT_TO_MAKE   = all
 
 all:
@@ -17,40 +19,89 @@ all:
 
 clean:
        @$(MAKE) $(MFLAGS) WHAT_TO_MAKE=$@ common
-       @rm -f *~ stamp*
+       @rm -f *~
 
+#
+# The $(R) is a magic variable not defined anywhere in this source.
+# It's purpose is to allow an admin to create an installation 'tar'
+# file *without* actually installing it.  e.g.:
+#
+#  $ R=/home/root/tmp make install
+#  $ cd /home/root/tmp
+#  $ tar -cf ~/freeradius-package.tar *
+#
+# The 'tar' file can then be un-tar'd on any similar machine.  It's a
+# cheap way of creating packages, without using a package manager.
+# Many of the platform-specific packaging tools use the $(R) variable
+# when creating their packages.
+#
 install:
+       $(INSTALL) -d -m 755    $(R)$(sbindir)
+       $(INSTALL) -d -m 755    $(R)$(bindir)
+       $(INSTALL) -d -m 755    $(R)$(raddbdir)
+       $(INSTALL) -d -m 755    $(R)$(mandir)
+       $(INSTALL) -d -m 755    $(R)$(RUNDIR)
+       $(INSTALL) -d -m 700    $(R)$(logdir)
+       $(INSTALL) -d -m 700    $(R)$(radacctdir)
+       $(INSTALL) -d -m 700    $(R)$(datadir)
+       $(INSTALL) -d -m 755    $(R)$(dictdir)
+       for i in 1 5 8; do \
+               $(INSTALL) -d -m 755    $(R)$(mandir)/man$$i; \
+               for p in man/man$$i/*.$$i; do \
+                       $(INSTALL) -m 644 $$p $(R)$(mandir)/man$$i; \
+               done \
+       done
        @$(MAKE) $(MFLAGS) WHAT_TO_MAKE=$@ common
+       @echo "Installing dictionary files in $(R)$(dictdir)"; \
+       cd share; \
+       for i in dictionary*; do \
+               $(INSTALL) -m 644 $$i $(R)$(dictdir); \
+       done
+       $(LIBTOOL) --finish $(R)$(libdir)
 
 common:
        @for dir in $(SUBDIRS); do \
                echo "Making $(WHAT_TO_MAKE) in $$dir..."; \
-               (cd $$dir ; $(MAKE) $(MFLAGS) $(WHAT_TO_MAKE)) || exit 1;\
+               (cd $$dir && $(MAKE) $(MFLAGS) $(WHAT_TO_MAKE)) || exit 1;\
        done
 
 distclean: clean
-       rm -f config.cache config.log config.status
+       rm -f config.cache config.log config.status libtool \
+               src/include/radpaths.h src/include/stamp-h \
+               libltdl/config.log libltdl/config.status \
+               libltdl/libtool
        -find . ! -name configure.in -name \*.in -print | \
                sed 's/\.in$$//' | \
                while read file; do rm -f $$file; done
+       -find src/modules -name config.mak | \
+               while read file; do rm -f $$file; done
+       -find src/modules -name config.h | \
+               while read file; do rm -f $$file; done
 
 ######################################################################
 #
 #  Automatic remaking rules suggested by info:autoconf#Automatic_Remaking
 #
 ######################################################################
-configure: configure.in
-       autoconf
+reconfig: configure src/include/autoconf.h.in
 
-# autoheader might not change config.h.in, so touch a stamp file
-config.h.in: stamp-h.in
-stamp-h.in: configure.in acconfig.h config.h.top config.h.bot
-       autoheader
-       echo timestamp > stamp-h.in
+configure: configure.in aclocal.m4
+       $(AUTOCONF)
 
-config.h: stamp-h
-stamp-h: config.h.in config.status
+# autoheader might not change autoconf.h.in, so touch a stamp file
+src/include/autoconf.h.in: src/include/stamp-h.in acconfig.h
+src/include/stamp-h.in: configure.in acconfig.h
+       $(AUTOHEADER)
+       echo timestamp > src/include/stamp-h.in
+
+src/include/autoconf.h: src/include/stamp-h
+src/include/stamp-h: src/include/autoconf.h.in config.status
        ./config.status
 
 config.status: configure
        ./config.status --recheck
+
+configure.in:
+
+TAGS:
+       etags `find src -type f -name '*.[ch]' -print`