diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
commit | eb203b01c9ee729e603289a63f881d9866f61ea6 (patch) | |
tree | f4210538531950ead86a55b24a0417a125897ebd /autogen.sh | |
parent | c47f33a498f9c824a48c23987b312b3176602f7f (diff) |
Final step of revamping the build system
The structure of the source tree is basically correct and this is
about as far as we can go without hacking at the C code.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 6a9e1ec502..e3407457b0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,10 +1,14 @@ #!/bin/sh set -e + +if type -p gtkdocize > /dev/null; then + gtkdocize --docdir docs + gtkdocargs=--enable-gtk-doc +fi aclocal && \ autoheader && \ autoconf && \ libtoolize --copy && \ -gtkdocize --docdir docs && \ automake --add-missing --copy |