summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2001-10-12 02:40:43 +0000
committerTom Yu <tlyu@mit.edu>2001-10-12 02:40:43 +0000
commit040c38e78a516685158540e53ebcf8c542dde995 (patch)
tree2a35073e478bad90c11f8c700ebd50cccf5c4db8
parent51ac6be1c3903d2703cfd1b59bd7e201fea5a24e (diff)
downloadkrb5-040c38e78a516685158540e53ebcf8c542dde995.tar.gz
krb5-040c38e78a516685158540e53ebcf8c542dde995.tar.xz
krb5-040c38e78a516685158540e53ebcf8c542dde995.zip
* post.in: Minor tidying. Make the target of the mondo recursion
rule commands be the variable $(RECURSE_TARGETS). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13806 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/config/ChangeLog5
-rw-r--r--src/config/post.in5
2 files changed, 9 insertions, 1 deletions
diff --git a/src/config/ChangeLog b/src/config/ChangeLog
index 31ea5ce97..edad15351 100644
--- a/src/config/ChangeLog
+++ b/src/config/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-11 Tom Yu <tlyu@mit.edu>
+
+ * post.in: Minor tidying. Make the target of the mondo recursion
+ rule commands be the variable $(RECURSE_TARGETS).
+
2001-09-06 Ken Raeburn <raeburn@mit.edu>
* post.in (depfix2.sed): New target, generates a sed script
diff --git a/src/config/post.in b/src/config/post.in
index 4fc9c056c..698d0135b 100644
--- a/src/config/post.in
+++ b/src/config/post.in
@@ -74,7 +74,10 @@ $(srcdir)/$(thisconfigdir)/configure: $(srcdir)/$(thisconfigdir)/configure.in \
cd $(srcdir)/$(thisconfigdir) && \
$(AUTOCONF) --localdir=$(CONFIG_RELTOPDIR) $(AUTOCONFFLAGS)
-all-recurse clean-recurse distclean-recurse install-recurse check-recurse depend-recurse Makefiles-recurse:
+RECURSE_TARGETS=all-recurse clean-recurse distclean-recurse install-recurse \
+ check-recurse depend-recurse Makefiles-recurse
+
+$(RECURSE_TARGETS):
@case "`echo 'x$(MFLAGS)'|sed -e 's/^x//' -e 's/ --.*$$//'`" \
in *[ik]*) e="status=1" ;; *) e="exit 1";; esac; \
if test -z "$(MY_SUBDIRS)" ; then \