mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-28 04:05:12 +01: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:
parent
3ad2ca3305
commit
5f0cda32b5
2 changed files with 11 additions and 5 deletions
|
@ -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,
|
||||
|
|
|
@ -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 ==========
|
||||
|
||||
|
|
Loading…
Reference in a new issue