diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 17:01:58 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-09-01 17:01:58 +0000 |
commit | 2ab22bdad1415813a3e1df329640332702272fc0 (patch) | |
tree | 380c56fb3840936848b1c2a44ef8509b1f23b33c /dists/autogen/autogen.sh | |
parent | 2cfc26881d21532cb9cb456800d0b1738e183fe0 (diff) | |
download | usdx-2ab22bdad1415813a3e1df329640332702272fc0.tar.gz usdx-2ab22bdad1415813a3e1df329640332702272fc0.tar.xz usdx-2ab22bdad1415813a3e1df329640332702272fc0.zip |
- new configure/make layout:
- configure/main-makefile moved to root-dir
- configure-script checked in (no need to call autogen.sh on first run)
- autogen.sh, m4, install.sh etc. moved to dists/autogen/
- config.guess/sub for canonical builds
- unit-tests moved to test
- removed delphi subdir in portaudio/-mixer
- COPYING.txt/AUTHORS.txt/... added
- dists/delphi7/2005 added
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1334 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rwxr-xr-x | dists/autogen/autogen.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dists/autogen/autogen.sh b/dists/autogen/autogen.sh new file mode 100755 index 00000000..fdecccd9 --- /dev/null +++ b/dists/autogen/autogen.sh @@ -0,0 +1,9 @@ +#!/bin/sh +# find absolute dists/autogen and project-root dirs +AUTOGEN_DIR=`dirname $0` +ABS_AUTOGEN_DIR=`cd ${AUTOGEN_DIR}; pwd` +ROOT_DIR="${AUTOGEN_DIR}/../.." +ABS_ROOT_DIR=`cd ${ROOT_DIR}; pwd` +# change to project-root and create configure-script +cd ${ROOT_DIR} +aclocal -I "${ABS_AUTOGEN_DIR}/m4" && autoconf && echo "configure created in ${ABS_ROOT_DIR}" |