Salome HOME
Merge from V6_main 01/04/2013
[samples/pylight.git] / build_configure
1 #!/bin/bash
2 # Copyright (C) 2009-2013  OPEN CASCADE
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 #  Author : Roman NIKOLAEV Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
22 #  Date   : 13/04/2009
23 #
24 ORIG_DIR=`pwd`
25 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
26
27 ########################################################################
28 # Test if the KERNEL_ROOT_DIR is set correctly
29
30 if test ! -d "${KERNEL_ROOT_DIR}"; then
31     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
32     exit
33 fi
34
35
36 ########################################################################
37 # Test if the GUI_ROOT_DIR is set correctly
38
39 if test ! -d "${GUI_ROOT_DIR}"; then
40     echo "failed : GUI_ROOT_DIR variable is not correct !"
41     exit
42 fi
43
44 cd ${CONF_DIR}
45 ABS_CONF_DIR=`pwd`
46
47 ########################################################################
48
49 # ____________________________________________________________________
50 # aclocal creates the aclocal.m4 file from the standard macro and the
51 # custom macro embedded in the directory adm_local/unix/config_files
52 # and KERNEL config_files directory.
53 # output:
54 #   aclocal.m4
55 #   autom4te.cache (directory)
56 echo "======================================================= aclocal"
57
58 aclocal -I adm_local/unix/config_files \
59         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
60         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
61
62 # ____________________________________________________________________
63 # libtoolize creates some configuration files (ltmain.sh,
64 # config.guess and config.sub). It only depends on the libtool
65 # version. The files are created in the directory specified with the
66 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
67 # output:
68 #   adm_local/unix/config_files/config.guess
69 #   adm_local/unix/config_files/config.sub
70 #   adm_local/unix/config_files/ltmain.sh
71 echo "==================================================== libtoolize"
72
73 libtoolize --force --copy --automake || exit 1
74
75 # ____________________________________________________________________
76 # autoconf creates the configure script from the file configure.ac (or
77 # configure.in if configure.ac doesn't exist)
78 # output:
79 #   configure
80 echo "====================================================== autoconf"
81
82 autoconf
83
84 # ____________________________________________________________________
85 # automake creates some scripts used in building process
86 # (install-sh, missing, ...). It only depends on the automake
87 # version. The files are created in the directory specified with the
88 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
89 # creates the Makefile.in files from the Makefile.am files.
90 # output:
91 #   adm_local/unix/config_files/compile
92 #   adm_local/unix/config_files/depcomp
93 #   adm_local/unix/config_files/install-sh
94 #   adm_local/unix/config_files/missing
95 #   adm_local/unix/config_files/py-compile
96 #   Makefile.in (from Makefile.am)
97 echo "====================================================== automake"
98
99 automake --copy --gnu --add-missing