We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03d6dd2 commit ac3ebd4Copy full SHA for ac3ebd4
doc/Makefile.am
@@ -13,11 +13,13 @@ adoc_input = $(srcdir)/icewm.adoc
13
14
$(html_documentation):
15
$(AM_V_GEN)if test -x "`which $(MARKDOWN) 2>/dev/null`"; then \
16
- if test $(mark_input) -nt $(html_documentation); then \
+ if test $(mark_input) -nt $(html_documentation) \
17
+ -o ! -s $(html_documentation); then \
18
$(MARKDOWN) $(mark_input) >$@; \
19
fi; \
20
elif test -x "`which $(ASCIIDOC) 2>/dev/null`"; then \
- if test $(adoc_input) -nt $(html_documentation); then \
21
+ if test $(adoc_input) -nt $(html_documentation) \
22
23
$(ASCIIDOC) $(ASCIIDOC_BACKEND) -o $@ $(adoc_input); \
24
25
else \
0 commit comments