Salome HOME
701a26d3085918959803c6527bef21ae048c7e84
[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 # ____________________________________________________________________
70 # aclocal creates the aclocal.m4 file from the standard macro and the
71 # custom macro embedded in the directory salome_adm/unix/config_files
72 # and KERNEL config_files directory.
73 # output:
74 #   aclocal.m4
75 #   autom4te.cache (directory)
76 echo "====================================================== aclocal"
77
78 aclocal -I adm_local/unix/config_files -I salome_adm/unix/config_files  || exit 1
79
80 # ____________________________________________________________________
81 # libtoolize creates some configuration files (ltmain.sh,
82 # config.guess and config.sub). It only depends on the libtool
83 # version. The files are created in the directory specified with the
84 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
85 # output:
86 #   salome_adm/unix/config_files/config.guess
87 #   salome_adm/unix/config_files/config.sub
88 #   salome_adm/unix/config_files/ltmain.sh
89 #echo "====================================================== libtoolize"
90
91 libtoolize --force --copy --automake || exit 1
92
93 # ____________________________________________________________________
94 # autoconf creates the configure script from the file configure.ac (or
95 # configure.in if configure.ac doesn't exist)
96 # output:
97 #   configure
98 echo "====================================================== autoconf"
99
100 autoconf
101
102 # ____________________________________________________________________
103 # automake creates some scripts used in building process
104 # (install-sh, missing, ...). It only depends on the automake
105 # version. The files are created in the directory specified with the
106 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
107 # creates the Makefile.in files from the Makefile.am files.
108 # output:
109 #   salome_adm/unix/config_files/compile
110 #   salome_adm/unix/config_files/depcomp
111 #   salome_adm/unix/config_files/install-sh
112 #   salome_adm/unix/config_files/missing
113 #   salome_adm/unix/config_files/py-compile
114 #   Makefile.in (from Makefile.am)
115 echo "====================================================== automake"
116
117 automake --copy --gnu --add-missing