Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[samples/randomizer.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 \
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