Don't install test plugins
[rodin/chimara.git] / autogen.sh
1 #!/bin/sh
2 ### autogen.sh with sensible comments ###############################
3
4 ### CREATE MACRO DIRECTORY ##########################################
5 # Needed by Gtk-doc
6 mkdir -p m4
7
8 ### GTK-DOC #########################################################
9 # Run before autotools
10 echo "Setting up Gtk-Doc"
11 gtkdocize --copy --flavour no-tmpl || exit 1
12
13 ### AUTOTOOLS #######################################################
14 # Runs autoconf, autoheader, aclocal, automake, autopoint, libtoolize
15 echo "Regenerating autotools files"
16 autoreconf --force --install || exit 1
17
18 ### INTLTOOL ########################################################
19 # Run after autopoint
20 echo "Setting up Intltool"
21 intltoolize --copy --force --automake || exit 1
22 # Hack to get intltool 0.40.0 to work (Debian stable)
23 touch intltool-extract.in
24 touch intltool-merge.in
25 touch intltool-update.in
26