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