Skip to content

Commit

Permalink
Add Makefile targets for building the user guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Hague committed Mar 6, 2018
1 parent cf97731 commit 19d587a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@ AM_CPPFLAGS = -I$(srcdir)/src $(BOOST_CPPFLAGS) -DCONFFILE=\"$(conffile)\" \

doc/user-guide.html : $(user_guide_sources) ; @ASCIIDOC@ -b html5 -d article -a appversion=$(PACKAGE_VERSION) -o $@ $(srcdir)/doc/user-guide/user-guide.adoc

doc/user-guide.pdf : $(user_guide_sources) ; @ASCIIDOC@ -b pdf -d article -r asciidoctor-pdf -a appversion=$(PACKAGE_VERSION) -o $@ $(srcdir)/doc/user-guide/user-guide.adoc

.PHONY: user-guide user-guide-html user-guide-pdf

user-guide : user-guide-html user-guide-pdf
user-guide-html : doc/user-guide.html
user-guide-pdf : doc/user-guide.pdf

compactor_headers = \
src/addressevent.hpp \
src/baseoutputwriter.hpp \
Expand Down

0 comments on commit 19d587a

Please sign in to comment.