Salome HOME
Using AutoTools for building procedure
[samples/pyhello.git] / build_configure
1 #!/bin/bash
2
3 #
4 # Tool for updating list of .in file for the SALOME project 
5 # and regenerating configure script
6 #
7 # Author : 
8 # Modified by : Alexander BORODIN (OCN) - autotools usage
9 # Date : 10/10/2002
10
11
12 ORIG_DIR=`pwd`
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
14
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
17
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
20     exit
21 fi
22
23
24 ########################################################################
25 # Test if the GUI_ROOT_DIR is set correctly
26
27 if test ! -d "${GUI_ROOT_DIR}"; then
28     echo "failed : GUI_ROOT_DIR variable is not correct !"
29     exit
30 fi
31
32 cd ${CONF_DIR}
33 ABS_CONF_DIR=`pwd`
34
35 mkdir -p salome_adm/unix/config_files
36 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
37 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
38
39 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
40
41 cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
42
43 # remove KERNEL deprecated configure files
44 for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
45   check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
46     check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
47     do
48       rm -f salome_adm/unix/config_files/${deprecated}
49       done
50
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 -I salome_adm/unix/config_files  || exit 1
62
63 # ____________________________________________________________________
64 # libtoolize creates some configuration files (ltmain.sh,
65 # config.guess and config.sub). It only depends on the libtool
66 # version. The files are created in the directory specified with the
67 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
68 # output:
69 #   salome_adm/unix/config_files/config.guess
70 #   salome_adm/unix/config_files/config.sub
71 #   salome_adm/unix/config_files/ltmain.sh
72 #echo "====================================================== libtoolize"
73
74 libtoolize --force --copy --automake || exit 1
75
76 # ____________________________________________________________________
77 # autoconf creates the configure script from the file configure.ac (or
78 # configure.in if configure.ac doesn't exist)
79 # output:
80 #   configure
81 echo "====================================================== autoconf"
82
83 autoconf
84
85 # ____________________________________________________________________
86 # automake creates some scripts used in building process
87 # (install-sh, missing, ...). It only depends on the automake
88 # version. The files are created in the directory specified with the
89 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
90 # creates the Makefile.in files from the Makefile.am files.
91 # output:
92 #   salome_adm/unix/config_files/compile
93 #   salome_adm/unix/config_files/depcomp
94 #   salome_adm/unix/config_files/install-sh
95 #   salome_adm/unix/config_files/missing
96 #   salome_adm/unix/config_files/py-compile
97 #   Makefile.in (from Makefile.am)
98 echo "====================================================== automake"
99
100 automake --copy --gnu --add-missing