aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2021-04-04 17:24:27 -0700
committerGlenn Morris2021-04-04 17:24:27 -0700
commita44d423a5aaf97790ce95350a38590fbb17b3220 (patch)
tree9e0c07b16d08cac8d98cbee0fe5772d8be417fe8
parenta86edac26b6648c19cb8e278125978b31f3a093a (diff)
downloademacs-a44d423a5aaf97790ce95350a38590fbb17b3220.tar.gz
emacs-a44d423a5aaf97790ce95350a38590fbb17b3220.zip
* doc/misc/Makefile.in (echo-sources): Make it not the first target.
-rw-r--r--doc/misc/Makefile.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index ae960fe769d..7982c0dc5ae 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -100,10 +100,6 @@ texi_sources = $(addsuffix .texi,${TARGETS})
100texi_notgen = $(filter-out $(notdir ${TEXI_FROM_ORG}),${texi_sources}) 100texi_notgen = $(filter-out $(notdir ${TEXI_FROM_ORG}),${texi_sources})
101texi_and_org = $(notdir ${ORG_SRC}) ${texi_notgen} 101texi_and_org = $(notdir ${ORG_SRC}) ${texi_notgen}
102SOURCES = $(sort ${texi_and_org}) 102SOURCES = $(sort ${texi_and_org})
103.PHONY: echo-sources
104## Used by the top-level Makefile.
105echo-sources:
106 @echo ${SOURCES}
107 103
108DVI_TARGETS = $(TARGETS:=.dvi) 104DVI_TARGETS = $(TARGETS:=.dvi)
109HTML_TARGETS = $(TARGETS:=.html) 105HTML_TARGETS = $(TARGETS:=.html)
@@ -122,7 +118,7 @@ ENVADD = $(AM_V_GEN)TEXINPUTS="$(srcdir):$(emacsdir):$(TEXINPUTS)" \
122gfdl = ${srcdir}/doclicense.texi 118gfdl = ${srcdir}/doclicense.texi
123style = ${emacsdir}/docstyle.texi 119style = ${emacsdir}/docstyle.texi
124 120
125.PHONY: info dvi html pdf ps echo-info $(INFO_TARGETS) 121.PHONY: info dvi html pdf ps echo-info echo-sources $(INFO_TARGETS)
126## Prevent implicit rule triggering for foo.info. 122## Prevent implicit rule triggering for foo.info.
127.SUFFIXES: 123.SUFFIXES:
128 124
@@ -138,6 +134,9 @@ echo-info:
138 @echo "$(INFO_INSTALL) " | \ 134 @echo "$(INFO_INSTALL) " | \
139 sed -e 's|[^ ]*/||g' -e 's/\.info//g' -e "s/ */.info /g" 135 sed -e 's|[^ ]*/||g' -e 's/\.info//g' -e "s/ */.info /g"
140 136
137echo-sources:
138 @echo ${SOURCES}
139
141dvi: $(DVI_TARGETS) 140dvi: $(DVI_TARGETS)
142 141
143html: $(HTML_TARGETS) 142html: $(HTML_TARGETS)