Salome HOME
Added more detailed log messages
[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 # $Id$
21 #
22
23 ORIG_DIR=`pwd`
24 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
25
26 ########################################################################
27 # Test if the KERNEL_ROOT_DIR is set correctly
28
29 if test ! -d "${KERNEL_ROOT_DIR}"; then
30     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
31     exit
32 fi
33
34
35 ########################################################################
36 # Test if the GUI_ROOT_DIR is set correctly
37
38 if test ! -d "${GUI_ROOT_DIR}"; then
39     echo "failed : GUI_ROOT_DIR variable is not correct !"
40     exit
41 fi
42
43 cd ${CONF_DIR}
44 ABS_CONF_DIR=`pwd`
45
46 mkdir -p salome_adm/unix/config_files
47 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
48
49
50 # ____________________________________________________________________
51 # aclocal creates the aclocal.m4 file from the standard macro and the
52 # custom macro embedded in the directory salome_adm/unix/config_files
53 # and KERNEL config_files directory.
54 # output:
55 #   aclocal.m4
56 #   autom4te.cache (directory)
57 echo "====================================================== aclocal"
58
59 aclocal -I adm_local/unix/config_files \
60         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
61         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
62
63 # ____________________________________________________________________
64 # autoconf creates the configure script from the file configure.ac (or
65 # configure.in if configure.ac doesn't exist)
66 # output:
67 #   configure
68 echo "====================================================== autoconf"
69
70 autoconf
71
72 # ____________________________________________________________________
73 # automake creates some scripts used in building process
74 # (install-sh, missing, ...). It only depends on the automake
75 # version. The files are created in the directory specified with the
76 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
77 # creates the Makefile.in files from the Makefile.am files.
78 # output:
79 #   salome_adm/unix/config_files/compile
80 #   salome_adm/unix/config_files/depcomp
81 #   salome_adm/unix/config_files/install-sh
82 #   salome_adm/unix/config_files/missing
83 #   salome_adm/unix/config_files/py-compile
84 #   Makefile.in (from Makefile.am)
85 echo "====================================================== automake"
86
87 automake --copy --gnu --add-missing