diff options
author | Gene Cumm <gene.cumm@gmail.com> | 2013-06-13 07:19:47 -0400 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2013-06-13 07:19:47 -0400 |
commit | a91f76e9a02aceaeb75c2048ea4d303a6ee5fe70 (patch) | |
tree | a985454faca54e2e0f26b53307cd7423357881aa /txt | |
parent | b7fe37c5a27f455672ae964e824990f4eb1d58b8 (diff) | |
download | syslinux-a91f76e9a02aceaeb75c2048ea4d303a6ee5fe70.tar.gz |
txt/Makefile: order-only prerequisite
No need to rebuild when the directory's timestamp is updated.
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
Diffstat (limited to 'txt')
-rw-r--r-- | txt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/txt/Makefile b/txt/Makefile index 03655775..c325c388 100644 --- a/txt/Makefile +++ b/txt/Makefile @@ -72,7 +72,7 @@ syslinux.cfg.txt: com-bug.txt com-rpt.txt html/ man/ text/ xhtml/: mkdir $@ -html/%.html: %.txt html/ +html/%.html: %.txt | html/ asciidoc -o $@ $< # As of AsciiDoc-8.5.2, altering the output filename for a2x does not appear possible @@ -88,10 +88,10 @@ html/%.html: %.txt html/ %.html: %.xml %.txt a2x $(A2X_OPTS) -f xhtml $< -man/%.1: %.txt man/ +man/%.1: %.txt | man/ a2x $(A2X_MAN_OPTS) $< -man/%.5: %.txt man/ +man/%.5: %.txt | man/ a2x $(A2X_MAN_OPTS) $< %.text: %.xml %.txt |