Salome HOME
b659522f6ebab3160cfda1ae99a48fd51fb83bdf
[samples/sierpinsky.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 # File    : build_configure
8 # Author  : Marc Tajchman - CEA
9 # Created : 10/10/2002
10 #
11
12 ORIG_DIR=`pwd`
13 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
14
15 ########################################################################
16 # Test if the KERNEL_ROOT_DIR is set correctly
17
18 if test ! -d "${KERNEL_ROOT_DIR}"; then
19     echo "failed : KERNEL_ROOT_DIR variable is not correct !"
20     exit
21 fi
22
23 ########################################################################
24 # Test if the GUI_ROOT_DIR is set correctly
25
26 if test ! -d "${GUI_ROOT_DIR}"; then
27     echo "failed : GUI_ROOT_DIR 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 ########################################################################
40 # Test if the RANDOMIZER_ROOT_DIR is set correctly
41
42 if test ! -d "${RANDOMIZER_ROOT_DIR}"; then
43     echo "failed : RANDOMIZER_ROOT_DIR variable is not correct !"
44     exit
45 fi
46
47 ########################################################################
48 # Test if the VISU_ROOT_DIR is set correctly
49
50 if test ! -d "${VISU_ROOT_DIR}"; then
51     echo "failed : VISU_ROOT_DIR variable is not correct !"
52     exit
53 fi
54
55 cd ${CONF_DIR}
56 ABS_CONF_DIR=`pwd`
57
58 mkdir -p salome_adm/unix/config_files
59 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
60 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
61
62 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
63
64 #cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
65 #cp -f ${VISU_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 ${RANDOMIZER_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 ${VISU_ROOT_DIR}/adm_local/unix/config_files \
92         -I ${RANDOMIZER_ROOT_DIR}/adm_local/unix/config_files || exit 1
93
94 # ____________________________________________________________________
95 # libtoolize creates some configuration files (ltmain.sh,
96 # config.guess and config.sub). It only depends on the libtool
97 # version. The files are created in the directory specified with the
98 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
99 # output:
100 #   salome_adm/unix/config_files/config.guess
101 #   salome_adm/unix/config_files/config.sub
102 #   salome_adm/unix/config_files/ltmain.sh
103 #echo "====================================================== libtoolize"
104
105 libtoolize --force --copy --automake || exit 1
106
107 # ____________________________________________________________________
108 # autoconf creates the configure script from the file configure.ac (or
109 # configure.in if configure.ac doesn't exist)
110 # output:
111 #   configure
112 echo "====================================================== autoconf"
113
114 autoconf
115
116 # ____________________________________________________________________
117 # automake creates some scripts used in building process
118 # (install-sh, missing, ...). It only depends on the automake
119 # version. The files are created in the directory specified with the
120 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
121 # creates the Makefile.in files from the Makefile.am files.
122 # output:
123 #   salome_adm/unix/config_files/compile
124 #   salome_adm/unix/config_files/depcomp
125 #   salome_adm/unix/config_files/install-sh
126 #   salome_adm/unix/config_files/missing
127 #   salome_adm/unix/config_files/py-compile
128 #   Makefile.in (from Makefile.am)
129 echo "====================================================== automake"
130
131 automake --copy --gnu --add-missing