diff options
| author | Glenn Morris | 2021-04-04 17:24:27 -0700 |
|---|---|---|
| committer | Glenn Morris | 2021-04-04 17:24:27 -0700 |
| commit | a44d423a5aaf97790ce95350a38590fbb17b3220 (patch) | |
| tree | 9e0c07b16d08cac8d98cbee0fe5772d8be417fe8 | |
| parent | a86edac26b6648c19cb8e278125978b31f3a093a (diff) | |
| download | emacs-a44d423a5aaf97790ce95350a38590fbb17b3220.tar.gz emacs-a44d423a5aaf97790ce95350a38590fbb17b3220.zip | |
* doc/misc/Makefile.in (echo-sources): Make it not the first target.
| -rw-r--r-- | doc/misc/Makefile.in | 9 |
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}) | |||
| 100 | texi_notgen = $(filter-out $(notdir ${TEXI_FROM_ORG}),${texi_sources}) | 100 | texi_notgen = $(filter-out $(notdir ${TEXI_FROM_ORG}),${texi_sources}) |
| 101 | texi_and_org = $(notdir ${ORG_SRC}) ${texi_notgen} | 101 | texi_and_org = $(notdir ${ORG_SRC}) ${texi_notgen} |
| 102 | SOURCES = $(sort ${texi_and_org}) | 102 | SOURCES = $(sort ${texi_and_org}) |
| 103 | .PHONY: echo-sources | ||
| 104 | ## Used by the top-level Makefile. | ||
| 105 | echo-sources: | ||
| 106 | @echo ${SOURCES} | ||
| 107 | 103 | ||
| 108 | DVI_TARGETS = $(TARGETS:=.dvi) | 104 | DVI_TARGETS = $(TARGETS:=.dvi) |
| 109 | HTML_TARGETS = $(TARGETS:=.html) | 105 | HTML_TARGETS = $(TARGETS:=.html) |
| @@ -122,7 +118,7 @@ ENVADD = $(AM_V_GEN)TEXINPUTS="$(srcdir):$(emacsdir):$(TEXINPUTS)" \ | |||
| 122 | gfdl = ${srcdir}/doclicense.texi | 118 | gfdl = ${srcdir}/doclicense.texi |
| 123 | style = ${emacsdir}/docstyle.texi | 119 | style = ${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 | ||
| 137 | echo-sources: | ||
| 138 | @echo ${SOURCES} | ||
| 139 | |||
| 141 | dvi: $(DVI_TARGETS) | 140 | dvi: $(DVI_TARGETS) |
| 142 | 141 | ||
| 143 | html: $(HTML_TARGETS) | 142 | html: $(HTML_TARGETS) |