Salome HOME
e28a352efd4677d815d9ceb4de95204b7e4638b4
[modules/geom.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/03/2007: Alexander BORODIN - OCN
13 # Reorganization for usage of autotools
14
15 ORIG_DIR=`pwd`
16 CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
17
18 ########################################################################
19 # Test if the KERNEL_ROOT_DIR is set correctly
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 # Test if the GUI_ROOT_DIR is set correctly
33 if test ! -d "${GUI_ROOT_DIR}"; then
34     echo "failed : GUI_ROOT_DIR variable is not correct !"
35     exit
36 fi
37
38 cd ${CONF_DIR}
39 ABS_CONF_DIR=`pwd`
40
41 mkdir -p salome_adm/unix/config_files
42 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/config_files/* salome_adm/unix/config_files
43 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/pythonbe.py salome_adm/unix
44
45 cp -f ${KERNEL_ROOT_DIR}/salome_adm/unix/SALOMEconfig.h.in salome_adm/unix
46
47 cp -f ${GUI_ROOT_DIR}/adm_local/unix/config_files/* salome_adm/unix/config_files
48
49 # ____________________________________________________________________
50 # aclocal creates the aclocal.m4 file from the standard macro and the
51 # custom macro embedded in the directory salome_adm/unix/config_files
52 # and KERNEL config_files directory.
53 # output:
54 #   aclocal.m4
55 #   autom4te.cache (directory)
56 echo "====================================================== aclocal"
57
58 aclocal -I adm_local/unix/config_files -I salome_adm/unix/config_files  || exit 1
59
60 # ____________________________________________________________________
61 # libtoolize creates some configuration files (ltmain.sh,
62 # config.guess and config.sub). It only depends on the libtool
63 # version. The files are created in the directory specified with the
64 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac).
65 # output:
66 #   salome_adm/unix/config_files/config.guess
67 #   salome_adm/unix/config_files/config.sub
68 #   salome_adm/unix/config_files/ltmain.sh
69 #echo "====================================================== libtoolize"
70
71 libtoolize --force --copy --automake || exit 1
72
73 # ____________________________________________________________________
74 # autoconf creates the configure script from the file configure.ac (or
75 # configure.in if configure.ac doesn't exist)
76 # output:
77 #   configure
78 echo "====================================================== autoconf"
79
80 autoconf
81
82 # ____________________________________________________________________
83 # automake creates some scripts used in building process
84 # (install-sh, missing, ...). It only depends on the automake
85 # version. The files are created in the directory specified with the
86 # AC_CONFIG_AUX_DIR(<mydir>) tag (see configure.ac). This step also
87 # creates the Makefile.in files from the Makefile.am files.
88 # output:
89 #   salome_adm/unix/config_files/compile
90 #   salome_adm/unix/config_files/depcomp
91 #   salome_adm/unix/config_files/install-sh
92 #   salome_adm/unix/config_files/missing
93 #   salome_adm/unix/config_files/py-compile
94 #   Makefile.in (from Makefile.am)
95 echo "====================================================== automake"
96
97 automake --copy --gnu --add-missing