4 # Tool for updating list of .in file for the SALOME project
5 # and regenerating configure script
8 # Modified by : Alexander BORODIN (OCN) - autotools usage
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19 echo "failed : KERNEL_ROOT_DIR variable is not correct !"
24 ########################################################################
25 # Test if the GUI_ROOT_DIR is set correctly
27 if test ! -d "${GUI_ROOT_DIR}"; then
28 echo "failed : GUI_ROOT_DIR variable is not correct !"
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
39 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
41 #cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
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
48 # rm -f salome_adm/unix/config_files/${deprecated}
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.
58 # autom4te.cache (directory)
59 echo "====================================================== aclocal"
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
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).
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"
76 libtoolize --force --copy --automake || exit 1
78 # ____________________________________________________________________
79 # autoconf creates the configure script from the file configure.ac (or
80 # configure.in if configure.ac doesn't exist)
83 echo "====================================================== autoconf"
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.
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"
102 automake --copy --gnu --add-missing