Salome HOME
a4abc107c7093e722901118cbb8aa8542a666f21
[samples/pycalculator.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 MED_ROOT_DIR is set correctly
33
34 if test ! -d "${MED_ROOT_DIR}"; then
35     echo "failed : MED_ROOT_DIR variable is not correct !"
36     exit
37 fi
38
39 cd ${CONF_DIR}
40 ABS_CONF_DIR=`pwd`
41
42 mkdir -p salome_adm/unix/config_files
43 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
44 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
45
46 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
47
48 #cp -f ${MED_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
49
50 # remove KERNEL deprecated configure files
51 #for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
52 #  check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
53 #    check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
54 #    do
55 #      rm -f salome_adm/unix/config_files/${deprecated}
56 #      done
57       
58
59 # ____________________________________________________________________
60 # aclocal creates the aclocal.m4 file from the standard macro and the
61 # custom macro embedded in the directory salome_adm/unix/config_files
62 # and KERNEL config_files directory.
63 # output:
64 #   aclocal.m4
65 #   autom4te.cache (directory)
66 echo "====================================================== aclocal"
67
68 aclocal -I adm_local/unix/config_files \
69         -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
70         -I ${MED_ROOT_DIR}/adm_local/unix/config_files || exit 1
71
72 # ____________________________________________________________________
73 # libtoolize creates some configuration files (ltmain.sh,
74 # config.guess and config.sub). It only depends on the libtool
75 # version. The files are created in the directory specified with the
76 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
77 # output:
78 #   salome_adm/unix/config_files/config.guess
79 #   salome_adm/unix/config_files/config.sub
80 #   salome_adm/unix/config_files/ltmain.sh
81 #echo "====================================================== libtoolize"
82
83 libtoolize --force --copy --automake || exit 1
84
85 # ____________________________________________________________________
86 # autoconf creates the configure script from the file configure.ac (or
87 # configure.in if configure.ac doesn't exist)
88 # output:
89 #   configure
90 echo "====================================================== autoconf"
91
92 autoconf
93
94 # ____________________________________________________________________
95 # automake creates some scripts used in building process
96 # (install-sh, missing, ...). It only depends on the automake
97 # version. The files are created in the directory specified with the
98 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
99 # creates the Makefile.in files from the Makefile.am files.
100 # output:
101 #   salome_adm/unix/config_files/compile
102 #   salome_adm/unix/config_files/depcomp
103 #   salome_adm/unix/config_files/install-sh
104 #   salome_adm/unix/config_files/missing
105 #   salome_adm/unix/config_files/py-compile
106 #   Makefile.in (from Makefile.am)
107 echo "====================================================== automake"
108
109 automake --copy --gnu --add-missing