aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2021-03-04 10:44:07 -0800
committerGlenn Morris2021-03-04 10:44:07 -0800
commit4e83fd00bd97894338418db97121f267fa162608 (patch)
treef6f37ca3de5b302c2f11d250f1efaba44b6fd0f2
parentbd443f4e9c50463524f48cf5c43f35f2cecd528a (diff)
downloademacs-4e83fd00bd97894338418db97121f267fa162608.tar.gz
emacs-4e83fd00bd97894338418db97121f267fa162608.zip
* doc/misc/Makefile.in (echo-sources): New phony target.
-rw-r--r--doc/misc/Makefile.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in
index ed33364440d..87d87bf2005 100644
--- a/doc/misc/Makefile.in
+++ b/doc/misc/Makefile.in
@@ -94,6 +94,15 @@ TEXI_FROM_ORG = ${ORG_SRC:.org=.texi}
94TARGETS_1 = $(INFO_INSTALL:ccmode=cc-mode) 94TARGETS_1 = $(INFO_INSTALL:ccmode=cc-mode)
95TARGETS = $(TARGETS_1:info.info=info) 95TARGETS = $(TARGETS_1:info.info=info)
96 96
97texi_sources = $(addsuffix .texi,${TARGETS})
98texi_notgen = $(filter-out $(notdir ${TEXI_FROM_ORG}),${texi_sources})
99texi_and_org = $(notdir ${ORG_SRC}) ${texi_notgen}
100SOURCES = $(sort ${texi_and_org})
101.PHONY: echo-sources
102## Used by the top-level Makefile.
103echo-sources:
104 @echo ${SOURCES}
105
97DVI_TARGETS = $(TARGETS:=.dvi) 106DVI_TARGETS = $(TARGETS:=.dvi)
98HTML_TARGETS = $(TARGETS:=.html) 107HTML_TARGETS = $(TARGETS:=.html)
99PDF_TARGETS = $(TARGETS:=.pdf) 108PDF_TARGETS = $(TARGETS:=.pdf)