Skip to content

Commit

Permalink
Make 'all' the default action.
Browse files Browse the repository at this point in the history
Changed the 'manpages' target to avoid regenerating the manpage.
  • Loading branch information
whart222 committed May 5, 2013
1 parent 0978856 commit fcfa5f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: all anchors outputs clean
.PHONY: all anchors outputs clean manpages

export XML_CATALOG_FILES = catalog.xml
PY = python
Expand All @@ -16,19 +16,19 @@ A2X_OPTS := -a toc -a icons -L -d article -v --xsltproc-opts "$(XSLTPROC_OP
# Ignore errors
%.epub: %.txt anchors outputs
- a2x -f epub $(A2X_OPTS) $<

all: guide.html guide.pdf guide.epub

manpages:
cd man; ./create_manpage;
cd man; asciidoc -v -d manpage ./cxxtestgen.1.txt
cd man; a2x -d manpage -f manpage ./cxxtestgen.1.txt

html: guide.html

pdf: guide.pdf

epub: guide.epub

all: guide.html guide.pdf guide.epub

anchors: guide.txt
$(PY) include_anchors.py $<

Expand Down

0 comments on commit fcfa5f1

Please sign in to comment.