Michael Elkins
24 anni fa
1 ha cambiato i file con
15 aggiunte e
0 eliminazioni
-
15
0
autogen.sh
|
@@ -0,0 +1,15 @@
|
|
|
+#!/bin/sh
|
|
|
+# $Id$
|
|
|
+aclocal
|
|
|
+if test $? -ne 0; then
|
|
|
+ exit
|
|
|
+fi
|
|
|
+automake --add-missing
|
|
|
+if test $? -ne 0; then
|
|
|
+ exit
|
|
|
+fi
|
|
|
+autoconf
|
|
|
+if test $? -ne 0; then
|
|
|
+ exit
|
|
|
+fi
|
|
|
+./configure $@
|