소스 검색

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