diff options
author | David Herrmann <dh.herrmann@googlemail.com> | 2012-06-23 20:09:19 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@googlemail.com> | 2012-06-23 20:09:19 +0200 |
commit | ac2ad45270b09b29930273578ebf35a4913aae9e (patch) | |
tree | 9ff48fbc150919dfca5b7f9d2fe6bfa19598fbfb /autogen.sh | |
parent | 163a9c94243e21e69f5edcc2729d326dfa5acdcb (diff) |
build: add gtk-doc
This adds gtk-doc documentation builds to kmscon. All documentation is
build in a central place due to gtk-doc restrictions.
Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,5 @@ #!/bin/sh mkdir -p m4/ -autoreconf -i -./configure --enable-debug $* +gtkdocize || exit 1 +autoreconf -i || exit 1 +./configure --enable-debug $* || exit 1 |