Salome HOME
Fix make distcheck problems
[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 mkdir -p salome_adm/unix/config_files
72 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
73 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
74
75 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
76
77 #cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
78 #cp -f ${MED_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
79 #cp -f ${GEOM_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
80 #cp -f ${SMESH_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
81
82 # remove KERNEL deprecated configure files
83 #for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
84 #    check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
85 #    check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
86 #    do
87 #       rm -f salome_adm/unix/config_files/${deprecated}
88 #    done
89                       
90
91 # ____________________________________________________________________
92 # aclocal creates the aclocal.m4 file from the standard macro and the
93 # custom macro embedded in the directory salome_adm/unix/config_files
94 # and KERNEL config_files directory.
95 # output:
96 #   aclocal.m4
97 #   autom4te.cache (directory)
98 echo "====================================================== aclocal"
99
100 aclocal -I adm_local/unix/config_files \
101         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
102         -I ${MED_ROOT_DIR}/adm_local/unix/config_files \
103         -I ${GEOM_ROOT_DIR}/adm_local/unix/config_files \
104         -I ${SMESH_ROOT_DIR}/adm_local/unix/config_files || exit 1
105
106 # ____________________________________________________________________
107 # libtoolize creates some configuration files (ltmain.sh,
108 # config.guess and config.sub). It only depends on the libtool
109 # version. The files are created in the directory specified with the
110 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
111 # output:
112 #   salome_adm/unix/config_files/config.guess
113 #   salome_adm/unix/config_files/config.sub
114 #   salome_adm/unix/config_files/ltmain.sh
115 #echo "====================================================== libtoolize"
116
117 libtoolize --force --copy --automake || exit 1
118
119 # ____________________________________________________________________
120 # autoconf creates the configure script from the file configure.ac (or
121 # configure.in if configure.ac doesn't exist)
122 # output:
123 #   configure
124 echo "====================================================== autoconf"
125
126 autoconf
127
128 # ____________________________________________________________________
129 # automake creates some scripts used in building process
130 # (install-sh, missing, ...). It only depends on the automake
131 # version. The files are created in the directory specified with the
132 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
133 # creates the Makefile.in files from the Makefile.am files.
134 # output:
135 #   salome_adm/unix/config_files/compile
136 #   salome_adm/unix/config_files/depcomp
137 #   salome_adm/unix/config_files/install-sh
138 #   salome_adm/unix/config_files/missing
139 #   salome_adm/unix/config_files/py-compile
140 #   Makefile.in (from Makefile.am)
141 echo "====================================================== automake"
142
143 automake --copy --gnu --add-missing