]> SALOME platform Git repositories - modules/geom.git/blob - build_configure
Salome HOME
Removed copying of configure 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 \
68         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
69         -I ${GUI_ROOT_DIR}/adm_local/unix/config_files || exit 1
70
71 # ____________________________________________________________________
72 # libtoolize creates some configuration files (ltmain.sh,
73 # config.guess and config.sub). It only depends on the libtool
74 # version. The files are created in the directory specified with the
75 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
76 # output:
77 #   salome_adm/unix/config_files/config.guess
78 #   salome_adm/unix/config_files/config.sub
79 #   salome_adm/unix/config_files/ltmain.sh
80 #echo "====================================================== libtoolize"
81
82 libtoolize --force --copy --automake || exit 1
83
84 # ____________________________________________________________________
85 # autoconf creates the configure script from the file configure.ac (or
86 # configure.in if configure.ac doesn't exist)
87 # output:
88 #   configure
89 echo "====================================================== autoconf"
90
91 autoconf
92
93 # ____________________________________________________________________
94 # automake creates some scripts used in building process
95 # (install-sh, missing, ...). It only depends on the automake
96 # version. The files are created in the directory specified with the
97 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
98 # creates the Makefile.in files from the Makefile.am files.
99 # output:
100 #   salome_adm/unix/config_files/compile
101 #   salome_adm/unix/config_files/depcomp
102 #   salome_adm/unix/config_files/install-sh
103 #   salome_adm/unix/config_files/missing
104 #   salome_adm/unix/config_files/py-compile
105 #   Makefile.in (from Makefile.am)
106 echo "====================================================== automake"
107
108 automake --copy --gnu --add-missing