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