]> SALOME platform Git repositories - plugins/blsurfplugin.git/blob - build_configure
Salome HOME
Additional fix for issue 0020692: Duplicate check_*.m4 between modules.
[plugins/blsurfplugin.git] / build_configure
1 #!/bin/bash
2 #  Copyright (C) 2007-2008  CEA/DEN, 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 # ---
21 # File   : build_configure
22 # Author : Vadim SANDLER, Open CASCADE S.A.S (vadim.sandler@opencascade.com)
23 # ---
24 #
25 ORIG_DIR=`pwd`
26 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
27
28 ########################################################################
29 # Test if the KERNEL_ROOT_DIR is set correctly
30
31 if test ! -d "${KERNEL_ROOT_DIR}"; then
32     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
33     exit
34 fi
35
36 # Test if the KERNEL_SRC is set correctly
37
38 #if test ! -d "${KERNEL_SRC}"; then
39 #    echo "failed : KERNEL_SRC variable is not correct !"
40 #    exit
41 #fi
42
43 ########################################################################
44 # Test if the MED_ROOT_DIR is set correctly
45
46 if test ! -d "${MED_ROOT_DIR}"; then
47     echo "failed : MED_ROOT_DIR variable is not correct !"
48     exit
49 fi
50
51 ########################################################################
52 # Test if the GEOM_ROOT_DIR is set correctly
53
54 if test ! -d "${GEOM_ROOT_DIR}"; then
55     echo "failed : GEOM_ROOT_DIR variable is not correct !"
56     exit
57 fi
58
59 ########################################################################
60 # Test if the SMESH_ROOT_DIR is set correctly
61
62 if test ! -d "${SMESH_ROOT_DIR}"; then
63     echo "failed : SMESH_ROOT_DIR variable is not correct !"
64     exit
65 fi
66
67 cd ${CONF_DIR}
68 ABS_CONF_DIR=`pwd`
69
70 #######################################################################
71
72 # ____________________________________________________________________
73 # aclocal creates the aclocal.m4 file from the standard macro and the
74 # custom macro embedded in the directory adm_local/unix/config_files
75 # and KERNEL config_files directory.
76 # output:
77 #   aclocal.m4
78 #   autom4te.cache (directory)
79 echo "======================================================= aclocal"
80
81 if test -d "${GUI_ROOT_DIR}"; then
82   aclocal -I adm_local/unix/config_files \
83           -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
84           -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
85           -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
86           -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
87           -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
88 else
89   aclocal -I adm_local/unix/config_files \
90           -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
91           -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
92           -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
93           -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
94 fi
95
96 # ____________________________________________________________________
97 # libtoolize creates some configuration files (ltmain.sh,
98 # config.guess and config.sub). It only depends on the libtool
99 # version. The files are created in the directory specified with the
100 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
101 # output:
102 #   adm_local/unix/config_files/config.guess
103 #   adm_local/unix/config_files/config.sub
104 #   adm_local/unix/config_files/ltmain.sh
105 echo "==================================================== libtoolize"
106
107 libtoolize --force --copy --automake || exit 1
108
109 # ____________________________________________________________________
110 # autoconf creates the configure script from the file configure.ac (or
111 # configure.in if configure.ac doesn't exist)
112 # output:
113 #   configure
114 echo "====================================================== autoconf"
115
116 autoconf
117
118 # ____________________________________________________________________
119 # automake creates some scripts used in building process
120 # (install-sh, missing, ...). It only depends on the automake
121 # version. The files are created in the directory specified with the
122 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
123 # creates the Makefile.in files from the Makefile.am files.
124 # output:
125 #   adm_local/unix/config_files/compile
126 #   adm_local/unix/config_files/depcomp
127 #   adm_local/unix/config_files/install-sh
128 #   adm_local/unix/config_files/missing
129 #   adm_local/unix/config_files/py-compile
130 #   Makefile.in (from Makefile.am)
131 echo "====================================================== automake"
132
133 automake --copy --gnu --add-missing