浏览代码

added autogen.sh to regenerate the build environment

Michael Elkins 24 年之前
父节点
当前提交
146945d460
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15 0
      autogen.sh

+ 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 $@