aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>2000-12-05 17:02:50 +0000
committerDave Love <[email protected]>2000-12-05 17:02:50 +0000
commit5c62b2e97a406a7d05a3bfddd49b091791efaec0 (patch)
treecafbe7ed52d85c0de009545948a2f4f35a6793ba
parent8a4f36cc75c9a66508f06a5cff393c2d993f9e25 (diff)
(TAGS, info): Avoid tab-prefixed comments in rules.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in13
2 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index abc2c15340..aa048dfaf4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-12-05 Dave Love <[email protected]>
+
+ * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
+
2000-12-02 Eli Zaretskii <[email protected]>
* info/dir: Change the category to "Emacs".
diff --git a/Makefile.in b/Makefile.in
index 17a00af4f7..d65e40fec5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -603,9 +603,10 @@ relock:
(cd lwlib; chmod u+w *.[ch] Makefile README)
(cd src; $(MAKE) $(MFLAGS) relock)
-TAGS tags: lib-src src
- # The src subdir knows how to do the right thing
- # even when the build directory and source dir are different.
+# The src subdir knows how to do the right thing
+# even when the build directory and source dir are different.
+TAGS tags:
+ lib-src src
cd src; $(MAKE) tags
check:
@@ -616,10 +617,10 @@ dist:
.PHONY: info dvi dist check html
force-info:
+# Note that man/Makefile knows how to
+# put the info files in $(srcdir),
+# so we can do ok running make in the build dir.
info: force-info
- # Note that man/Makefile knows how to
- # put the info files in $(srcdir),
- # so we can do ok running make in the build dir.
(cd man; $(MAKE) $(MFLAGS) info)
dvi:
(cd man; $(MAKE) $(MFLAGS) dvi)