diff options
author | unknown <tim@cane.mysql.fi> | 2000-12-18 23:24:19 +0200 |
---|---|---|
committer | unknown <tim@cane.mysql.fi> | 2000-12-18 23:24:19 +0200 |
commit | 447b5534d02b99327d73ac15edb43bcf5d793e7e (patch) | |
tree | 144029d1dacb5aaa27e21b64dbfc97258409e2ab /BUILD/FINISH.sh | |
parent | 7cdb2b2d1d1efef069a305d130abf57d099c790e (diff) | |
download | mariadb-git-447b5534d02b99327d73ac15edb43bcf5d793e7e.tar.gz |
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-alpha:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-debug-no-bdb:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-debug:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-gcov:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium-myodbc:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-pentium:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-solaris-sparc-purify:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
BUILD/compile-solaris-sparc:
- cleaned up BUILD scripts
- consolidate common functionality into one place
- make them detect gmake/make
Diffstat (limited to 'BUILD/FINISH.sh')
-rw-r--r-- | BUILD/FINISH.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh new file mode 100644 index 00000000000..39a3dc3f7ef --- /dev/null +++ b/BUILD/FINISH.sh @@ -0,0 +1,8 @@ +cflags="$c_warnings $extra_flags" +cxxflags="$cxx_warnings $base_cxxflags $extra_flags" +configure="./configure $base_configs $extra_configs" + +CFLAGS="$cflags" CXX=gcc CXXFLAGS="$cxxflags" eval "$configure" + +test "$make" = no || $make $AM_MAKEFLAGS +test -z "$strip" || strip mysqld |