Salome HOME
1b5fd313e8bbba1a64c18b71b320b130784b64de
[samples/genericsolver.git] / build_configure
1 #!/bin/bash
2 #  Copyright (C) 2009-2010 EDF R&D
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 ORIG_DIR=`pwd`
21 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
22
23 ########################################################################
24 # Test if the KERNEL_ROOT_DIR is set correctly
25
26 if test ! -d "${KERNEL_ROOT_DIR}"; then
27     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
28     exit
29 fi
30
31
32 ########################################################################
33 # Test if the GUI_ROOT_DIR is set correctly
34
35 if test ! -d "${GUI_ROOT_DIR}"; then
36     echo "failed : GUI_ROOT_DIR variable is not correct !"
37     exit
38 fi
39
40 cd ${CONF_DIR}
41 ABS_CONF_DIR=`pwd`
42
43 mkdir -p salome_adm/unix/config_files
44 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
45 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
46
47 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
48
49 #cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
50
51 # remove KERNEL deprecated configure files
52 #for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
53 #  check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
54 #    check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
55 #    do
56 #      rm -f salome_adm/unix/config_files/${deprecated}
57 #      done
58
59
60 # ____________________________________________________________________
61 # aclocal creates the aclocal.m4 file from the standard macro and the
62 # custom macro embedded in the directory salome_adm/unix/config_files
63 # and KERNEL config_files directory.
64 # output:
65 #   aclocal.m4
66 #   autom4te.cache (directory)
67 echo "====================================================== aclocal"
68
69 aclocal -I adm_local/unix/config_files \
70         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
71         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
72
73 # ____________________________________________________________________
74 # libtoolize creates some configuration files (ltmain.sh,
75 # config.guess and config.sub). It only depends on the libtool
76 # version. The files are created in the directory specified with the
77 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
78 # output:
79 #   salome_adm/unix/config_files/config.guess
80 #   salome_adm/unix/config_files/config.sub
81 #   salome_adm/unix/config_files/ltmain.sh
82 #echo "====================================================== libtoolize"
83
84 libtoolize --force --copy --automake || exit 1
85
86 # ____________________________________________________________________
87 # autoconf creates the configure script from the file configure.ac (or
88 # configure.in if configure.ac doesn't exist)
89 # output:
90 #   configure
91 echo "====================================================== autoconf"
92
93 autoconf
94
95 # ____________________________________________________________________
96 # automake creates some scripts used in building process
97 # (install-sh, missing, ...). It only depends on the automake
98 # version. The files are created in the directory specified with the
99 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
100 # creates the Makefile.in files from the Makefile.am files.
101 # output:
102 #   salome_adm/unix/config_files/compile
103 #   salome_adm/unix/config_files/depcomp
104 #   salome_adm/unix/config_files/install-sh
105 #   salome_adm/unix/config_files/missing
106 #   salome_adm/unix/config_files/py-compile
107 #   Makefile.in (from Makefile.am)
108 echo "====================================================== automake"
109
110 automake --copy --gnu --add-missing