summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-03-12 15:26:45 +0000
committerRichard Hughes <richard@hughsie.com>2014-03-12 15:54:17 +0000
commit32cb5d554937b62f2e6e630afc7cb7dea0c5d725 (patch)
treed6db1b29b7f728dd8c512f68653eba0534d71632 /autogen.sh
parentddfeb3ad8df0d41ff015305f07f50a8b4fc9e331 (diff)
downloadappstream-glib-32cb5d554937b62f2e6e630afc7cb7dea0c5d725.tar.gz
Add initial project files
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..5776c0a
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,39 @@
+#!/bin/sh
+# Copyright (C) 2009-2014 Richard Hughes <richard@hughsie.com>
+#
+# Run this to generate all the initial makefiles, etc.
+#
+# Licensed under the GNU General Public License Version 2
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+(test -f $srcdir/configure.ac) || {
+ echo -n "**Error**: Directory \"\'$srcdir\'\" does not look like the"
+ echo " top-level package directory"
+ exit 1
+}
+
+if ([ -z "$*" ] && [ "x$NOCONFIGURE" = "x" ]) ; then
+ echo "**Warning**: I am going to run 'configure' with no arguments."
+ echo "If you wish to pass any to it, please specify them on the"
+ echo "'$0' command line."
+ echo
+fi
+
+(cd $srcdir && gtkdocize) || exit 1
+(cd $srcdir && autoreconf --force --install) || exit 1
+
+conf_flags="--enable-gtk-doc"
+
+if test x$NOCONFIGURE = x; then
+ echo Running $srcdir/configure $conf_flags "$@" ...
+ $srcdir/configure $conf_flags "$@" \
+ && echo Now type \`make\' to compile. || exit 1
+else
+ echo Skipping configure process.
+fi