]> SALOME platform Git repositories - samples/component.git/blob - build_configure
Salome HOME
d5d1fcd979fcd562e5b5692ac0b4085afdaace7f
[samples/component.git] / build_configure
1 #!/bin/sh
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 # Modified by : Alexander BORODIN (OCN) - autotools usage
9 # Date : 10/10/2002
10 # $Header$
11 #
12
13 ORIG_DIR=`pwd`
14 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
15 COMPONENT_WITH_GUI="yes"
16
17 ########################################################################
18 # Test if the KERNEL_ROOT_DIR is set correctly
19
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 for option
33 do
34   case $option in
35       -with-ihm | --with-ihm)
36           COMPONENT_WITH_GUI="yes"
37           break;;
38       -without-ihm | --without-ihm | -with-ihm=no | --with-ihm=no)
39           COMPONENT_WITH_GUI="no"
40           break;;
41   esac
42 done
43
44 ########################################################################
45 # Test if the GUI_ROOT_DIR is set correctly
46
47 if test ${COMPONENT_WITH_GUI} = yes; then
48     if test ! -d "${GUI_ROOT_DIR}"; then
49         echo "failed : GUI_ROOT_DIR variable is not correct !"
50         exit
51     fi
52 fi
53
54 ########################################################################
55 # Test if the MED_ROOT_DIR is set correctly
56
57 if test ! -d "${MED_ROOT_DIR}"; then
58     echo "failed : MED_ROOT_DIR variable is not correct !"
59     exit
60 fi
61
62 cd ${CONF_DIR}
63 ABS_CONF_DIR=`pwd`
64
65 mkdir -p salome_adm/unix/config_files
66 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
67 #cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
68
69 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
70
71 #if test ${COMPONENT_WITH_GUI} = yes; then
72 #    cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
73 #fi
74
75 #cp -f ${MED_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
76
77 # remove KERNEL deprecated configure files
78 #for deprecated in ac_cc_warnings.m4 ac_cxx_partial_specialization.m4 \
79 #  check_mico.m4 config.guess ltmain.sh ac_cxx_bool.m4 ltconfig ac_cxx_typename.m4 \
80 #    check_pthreads.m4 config.sub libtool.m4 ac_cxx_mutable.m4 missing
81 #    do
82 #      rm -f salome_adm/unix/config_files/${deprecated}
83 #      done
84
85
86 # ____________________________________________________________________
87 # aclocal creates the aclocal.m4 file from the standard macro and the
88 # custom macro embedded in the directory salome_adm/unix/config_files
89 # and KERNEL config_files directory.
90 # output:
91 #   aclocal.m4
92 #   autom4te.cache (directory)
93 echo "====================================================== aclocal"
94
95 if test ${COMPONENT_WITH_GUI} = yes; then
96     aclocal -I adm_local/unix/config_files \
97             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
98             -I ${GUI_ROOT_DIR}/adm_local/unix/config_files \
99             -I ${MED_ROOT_DIR}/adm_local/unix/config_files || exit 1
100 else
101     aclocal -I adm_local/unix/config_files \
102             -I ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files \
103             -I ${MED_ROOT_DIR}/adm_local/unix/config_files || exit 1
104 fi
105
106 # ____________________________________________________________________
107 # libtoolize creates some configuration files (ltmain.sh,
108 # config.guess and config.sub). It only depends on the libtool
109 # version. The files are created in the directory specified with the
110 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
111 # output:
112 #   salome_adm/unix/config_files/config.guess
113 #   salome_adm/unix/config_files/config.sub
114 #   salome_adm/unix/config_files/ltmain.sh
115 #echo "====================================================== libtoolize"
116
117 libtoolize --force --copy --automake || exit 1
118
119 # ____________________________________________________________________
120 # autoconf creates the configure script from the file configure.ac (or
121 # configure.in if configure.ac doesn't exist)
122 # output:
123 #   configure
124 echo "====================================================== autoconf"
125
126 autoconf
127
128 # ____________________________________________________________________
129 # automake creates some scripts used in building process
130 # (install-sh, missing, ...). It only depends on the automake
131 # version. The files are created in the directory specified with the
132 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
133 # creates the Makefile.in files from the Makefile.am files.
134 # output:
135 #   salome_adm/unix/config_files/compile
136 #   salome_adm/unix/config_files/depcomp
137 #   salome_adm/unix/config_files/install-sh
138 #   salome_adm/unix/config_files/missing
139 #   salome_adm/unix/config_files/py-compile
140 #   Makefile.in (from Makefile.am)
141 echo "====================================================== automake"
142
143 automake --copy --gnu --add-missing