diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4d0dc2fe87..39d589c1cc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -146,6 +146,17 @@ cppcheck: --template '{file}:{line}: check_fail: {message} ({severity},{id})' \ src +# this is a shortcut that builds only documentation dependecies and documentation itself +gen-docs: + $(MAKE) -C src/lib/asiolink + $(MAKE) -C src/lib/exceptions + $(MAKE) -C src/lib/util + $(MAKE) -C src/lib/cc + $(MAKE) -C tools + $(MAKE) -C doc + $(MAKE) -C doc/guide pdf + + # These steps are necessary during installation install-exec-hook: mkdir -p $(DESTDIR)${localstatedir}/log/ |