summaryrefslogtreecommitdiff
path: root/plugins/Clist_ng/AGG/src/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_ng/AGG/src/autogen.sh')
-rw-r--r--plugins/Clist_ng/AGG/src/autogen.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/Clist_ng/AGG/src/autogen.sh b/plugins/Clist_ng/AGG/src/autogen.sh
new file mode 100644
index 0000000000..d37d8e2b9f
--- /dev/null
+++ b/plugins/Clist_ng/AGG/src/autogen.sh
@@ -0,0 +1,20 @@
+# autogen.sh
+#
+# invoke the auto* tools to create the configureation system
+
+# build aclocal.m4
+aclocal
+
+# build the configure script
+autoconf
+
+# set up libtool
+libtoolize --force
+
+# invoke automake
+automake --foreign --add-missing
+
+# and finally invoke our new configure
+./configure $*
+
+# end