summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-07-16 16:47:44 +0000
committerKarl Berry <karl@freefriends.org>2007-07-16 16:47:44 +0000
commitb4195e08ebb104533785f8dd305b7f23e4a51719 (patch)
treebfe94f2066e65090a1aa6852b91dc905f117dba0
parent503ec2dd33ab6e4b82fdab0a643b17d14f820623 (diff)
new target lib for @LIBSDEP@, not all
git-svn-id: svn://tug.org/texlive/trunk@4628 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Build/source/ChangeLog7
-rw-r--r--Build/source/Makefile.in4
2 files changed, 10 insertions, 1 deletions
diff --git a/Build/source/ChangeLog b/Build/source/ChangeLog
index e2098a5050a..7b1ed3724c9 100644
--- a/Build/source/ChangeLog
+++ b/Build/source/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-16 Karl Berry <karl@tug.org>
+
+ * Makefile.in (lib): new target, depends on @LIBSDEP@.
+ (all): do not depend on @LIBSDEP@, redundant since we already
+ descend and build.
+ From Joachim, 28 Jun 2007 11:47:10.
+
2007-03-21 Karl Berry <karl@tug.org>
* Makefile.in (distclean): remove mention of klibtool.
diff --git a/Build/source/Makefile.in b/Build/source/Makefile.in
index e57158bfac9..8a230a1f5c8 100644
--- a/Build/source/Makefile.in
+++ b/Build/source/Makefile.in
@@ -121,7 +121,6 @@ uninstall:
Makefile: Makefile.in config.status
$(SHELL) ./config.status
-all: @LIBSDEP@
all clean mostlyclean:
esubdirs="$(LIBSDIRS) $(ESUBDIRS)"; \
for dir in $$esubdirs; do \
@@ -129,6 +128,9 @@ all clean mostlyclean:
(if test -f $$dir/Makefile; then cd $$dir && $(MAKE) $@; else true; fi) || exit 1; \
done
+# to build libraries only, when working on drivers.
+lib: @LIBSDEP@
+
distclean: clean
cleandirs="$(LIBSDIRS) $(ESUBDIRS)"; \
for dir in $$cleandirs; do \