summaryrefslogtreecommitdiff
path: root/BUILD/compile-alpha
diff options
context:
space:
mode:
authortim@cane.mysql.fi <>2000-12-18 23:24:19 +0200
committertim@cane.mysql.fi <>2000-12-18 23:24:19 +0200
commit34efa902b094c7a6248be121f856cbef6e9dbe28 (patch)
tree144029d1dacb5aaa27e21b64dbfc97258409e2ab /BUILD/compile-alpha
parent5fdf032769b996bc084e35ffe1140e13500de3dd (diff)
downloadmariadb-git-34efa902b094c7a6248be121f856cbef6e9dbe28.tar.gz
- cleaned up BUILD scripts
- consolidate common functionality into one place - make them detect gmake/make
Diffstat (limited to 'BUILD/compile-alpha')
-rwxr-xr-xBUILD/compile-alpha14
1 files changed, 8 insertions, 6 deletions
diff --git a/BUILD/compile-alpha b/BUILD/compile-alpha
index ff70be8a5ab..10b9d67e1c1 100755
--- a/BUILD/compile-alpha
+++ b/BUILD/compile-alpha
@@ -1,7 +1,9 @@
-make -k clean
-/bin/rm -f */.deps/*.P */*.o
-/bin/rm -f config.cache
-aclocal; autoheader; aclocal; automake; autoconf
+#! /bin/sh
-CFLAGS="-O6 -fomit-frame-pointer -mcpu=ev6 -Wa,-mev6" CXX=gcc CXXFLAGS="-O6 -mcpu=ev6 -Wa,-mev6 -fomit-frame-pointer -felide-constructors -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql --disable-shared --with-extra-charsets=complex
-make
+path=`dirname $0`
+. "$path/SETUP.sh"
+
+extra_flags="$alpha_cflags $fast_cflags"
+extra_configs="$alpha_configs"
+
+. "$path/FINISH.sh"