aclocal.m4 (MAKE_SUBDIRS, _MAKE_SUBDIRS): Creatre new macro
authorTheodore Tso <tytso@mit.edu>
Fri, 14 Apr 1995 12:32:16 +0000 (12:32 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 14 Apr 1995 12:32:16 +0000 (12:32 +0000)
_MAKE_SUBDIRS which works like MAKE_SUBDIRS except that it
is possible for the target name in the parent Makefile and
the target name which should be built in each of the
subdirectories can be different.  MAKE_SUBDIRS is now a
special case of _MAKE_SUBDIRS.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5357 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index 9fe56c6e92e39765adb53b391d49705c03e60230..3fdc08499016770b848c9ffd37265ea90d49c32e 100644 (file)
@@ -1,3 +1,12 @@
+Fri Apr 14 08:23:52 1995  Theodore Y. Ts'o  (tytso@dcl)
+
+       * aclocal.m4 (MAKE_SUBDIRS, _MAKE_SUBDIRS): Creatre new macro
+               _MAKE_SUBDIRS which works like MAKE_SUBDIRS except that it
+               is possible for the target name in the parent Makefile and
+               the target name which should be built in each of the
+               subdirectories can be different.  MAKE_SUBDIRS is now a
+               special case of _MAKE_SUBDIRS.
+
 Fri Mar 31 21:27:13 1995  Theodore Y. Ts'o  (tytso@dcl)
 
        * aclocal.m4: Use the local autoconf when rebuilding the configure
index 1db12c2bcedcc206e4f7f3b6f78784889f3c2a29..e36eef4ec0a2d4beb51a454c94ab0b50604139bd 100644 (file)
@@ -92,7 +92,7 @@ dnl append subdir rule -- MAKE_SUBDIRS("making",all)
 dnl
 define(AC_DIVERSION_MAKEFILE,9)dnl   things that get pushed on the makefile
 dnl
-define(MAKE_SUBDIRS,[
+define(_MAKE_SUBDIRS,[
 AC_DIVERT_PUSH(AC_DIVERSION_MAKEFILE)dnl
 changequote(<<<,>>>)dnl
 
@@ -102,11 +102,13 @@ $2::<<<
        do \
                (cd $$i ; echo>>> $1 <<<"in $(CURRENT_DIR)$$i..."; \
                        $(MAKE) $(MFLAGS) CC="$(CC)" CCOPTS="$(CCOPTS)" \
-                       CURRENT_DIR=$(CURRENT_DIR)$$i/ >>>$2<<<); \
+                       CURRENT_DIR=$(CURRENT_DIR)$$i/ >>>$3<<<); \
        done>>>
 changequote([,])dnl
 AC_DIVERT_POP()dnl
 ])dnl
+define(MAKE_SUBDIRS,[
+_MAKE_SUBDIRS($1, $2, $2)])dnl
 dnl
 dnl take saved makefile stuff and put it in the Makefile
 dnl