diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-10-08 23:51:02 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-08 23:51:02 -0700 |
commit | 83eb64a9ef5281a28378af8cb252ec5329b0d142 (patch) | |
tree | 43de2f48b5c0c05c1c206f84251eabccffe5a5b2 /Documentation | |
parent | 8e8a631cbc354e47c94913f4e82295cea13b3892 (diff) | |
parent | dddcd1016218a1b9b9662be078665e24d46efbac (diff) | |
download | subsurface-83eb64a9ef5281a28378af8cb252ec5329b0d142.tar.gz |
Merge http://github.com/thiagomacieira/subsurface
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index c56b3efcb..67d2a0c73 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -7,20 +7,20 @@ BROWSER = firefox all: doc $(addprefix $(DOCNAME).,pdf text) -doc: $(HTMLDOC) +doc: $(OUT)$(HTMLDOC) -$(DOCNAME).text: $(DOCSOURCE) +$(OUT)$(DOCNAME).text: $(DOCSOURCE) $(A2X) -f text $< -$(DOCNAME).pdf: $(DOCSOURCE) +$(OUT)$(DOCNAME).pdf: $(DOCSOURCE) $(A2X) -f pdf $< -$(HTMLDOC): $(DOCSOURCE) +$(OUT)$(HTMLDOC): $(DOCSOURCE) @echo "if asciidoc isn't found no HTML documentation is produced but Subsurface is still functional" $(ASCIIDOC) $< || true # Alternatively:: -$(DOCNAME).xhtml: $(DOCSOURCE) +$(OUT)$(DOCNAME).xhtml: $(DOCSOURCE) $(A2X) --icons -f xhtml $< show: $(HTMLDOC) |