1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-27 20:35:22 +02:00

43333: Generate FAQ.html in the builddir, rather than in the srcdir, and add it to the default target of the Etc/ subdirectory.

This fixes `make targz-doc` in out-of-tree builds.
This commit is contained in:
Daniel Shahaf 2018-08-25 23:47:27 +00:00
parent 3ad2ca3305
commit 5f0cda32b5
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2018-09-03 Daniel Shahaf <d.s@daniel.shahaf.name>
* 43333: Etc/Makefile.in: Generate FAQ.html in the builddir,
rather than in the srcdir, and add it to the default target of
the Etc/ subdirectory.
2018-09-03 Peter Stephenson <p.stephenson@samsung.com>
* 43365: Src/Zle/zle_keymap.c, Src/Zle/zle_main.c,

View File

@ -40,13 +40,13 @@ INSTALL = @INSTALL@
# ========== DEPENDENCIES FOR BUILDING ==========
all: FAQ
all: FAQ FAQ.html
FAQ: FAQ.yo
cd $(sdir) && $(YODL2TXT) FAQ.yo && mv -f FAQ.txt FAQ
FAQ: $(sdir)/FAQ.yo
$(YODL2TXT) -o FAQ.txt $< && mv FAQ.txt $@
FAQ.html: FAQ.yo
$(YODL2HTML) $(sdir)/FAQ.yo
FAQ.html: $(sdir)/FAQ.yo
$(YODL2HTML) -o $@ $<
# ========== DEPENDENCIES FOR CLEANUP ==========