diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:51:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:51:32 +0200 |
commit | 2cea0dc10d7becabf707f7b6da4c65144397257b (patch) | |
tree | 9c40c7c9d7419c9d363eab52a5b6f93266cef711 /build/configure | |
parent | af57ba0beeec0154ad61684c18a2ad1439852d91 (diff) |
Build system setup
Diffstat (limited to 'build/configure')
-rwxr-xr-x | build/configure | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/build/configure b/build/configure new file mode 100755 index 0000000..0bb1e07 --- /dev/null +++ b/build/configure @@ -0,0 +1,32 @@ +#! /usr/bin/env bash + +# file : build/configure +# author : Boris Kolpackov <boris@codesynthesis.com> +# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +# $1 out file +# +# bld_root - build root +# project_name - project name +# + +source $bld_root/dialog.bash + +$echo +$echo +$echo "configuring '$project_name'" +$echo +$echo + +$echo +$echo "Please select the database you would like to use:" +$echo +$echo "(1) MySQL" +$echo + +db_id=`read_option "mysql" "mysql"` + +echo "db_id := $db_id" >$1 + +source $scf_root/$db_id/configure |