summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 \