]> SALOME platform Git repositories - samples/pylight.git/blob - build_configure
Salome HOME
2bc396d63155bf0b67939d725dba1695f4a5b0a6
[samples/pylight.git] / build_configure
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 #  Author : Roman NIKOLAEV Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
23 #  Date   : 13/04/2009
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
37 ########################################################################
38 # Test if the GUI_ROOT_DIR is set correctly
39
40 if test ! -d "${GUI_ROOT_DIR}"; then
41     echo "failed : GUI_ROOT_DIR variable is not correct !"
42     exit
43 fi
44
45 cd ${CONF_DIR}
46 ABS_CONF_DIR=`pwd`
47
48
49 mkdir -p salome_adm/unix/config_files
50 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
51
52 # ____________________________________________________________________
53 # aclocal creates the aclocal.m4 file from the standard macro and the
54 # custom macro embedded in the directory salome_adm/unix/config_files
55 # and KERNEL config_files directory.
56 # output:
57 #   aclocal.m4
58 #   autom4te.cache (directory)
59 echo "====================================================== aclocal"
60
61 aclocal -I adm_local/unix/config_files \
62         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
63         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
64
65 # ____________________________________________________________________
66 # libtoolize creates some configuration files (ltmain.sh,
67 # config.guess and config.sub). It only depends on the libtool
68 # version. The files are created in the directory specified with the
69 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
70 # output:
71 #   salome_adm/unix/config_files/config.guess
72 #   salome_adm/unix/config_files/config.sub
73 #   salome_adm/unix/config_files/ltmain.sh
74 #echo "====================================================== libtoolize"
75
76 libtoolize --force --copy --automake || exit 1
77
78 # ____________________________________________________________________
79 # autoconf creates the configure script from the file configure.ac (or
80 # configure.in if configure.ac doesn't exist)
81 # output:
82 #   configure
83 echo "====================================================== autoconf"
84
85 autoconf
86
87 # ____________________________________________________________________
88 # automake creates some scripts used in building process
89 # (install-sh, missing, ...). It only depends on the automake
90 # version. The files are created in the directory specified with the
91 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
92 # creates the Makefile.in files from the Makefile.am files.
93 # output:
94 #   salome_adm/unix/config_files/compile
95 #   salome_adm/unix/config_files/depcomp
96 #   salome_adm/unix/config_files/install-sh
97 #   salome_adm/unix/config_files/missing
98 #   salome_adm/unix/config_files/py-compile
99 #   Makefile.in (from Makefile.am)
100 echo "====================================================== automake"
101
102 automake --copy --gnu --add-missing