diff options
author | Michal Nowikowski <godfryd@isc.org> | 2019-05-27 16:44:50 +0200 |
---|---|---|
committer | Michal Nowikowski <godfryd@isc.org> | 2019-05-27 19:32:35 +0200 |
commit | 6a95d51e86194c6da3e0af68e4c6a21dab9d6015 (patch) | |
tree | 4defa9e5a48d59449079145ce9a4ad358f520d76 /Makefile.am | |
parent | [#633] Contributors guide is now part of the tarball (diff) | |
download | kea-6a95d51e86194c6da3e0af68e4c6a21dab9d6015.tar.xz kea-6a95d51e86194c6da3e0af68e4c6a21dab9d6015.zip |
various improvements
- improved several fragments of the first 3 chapters in ARM
- added target to top level Makefile for generating PDF docs
- improved formating of ChangeLog
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/ |