Salome HOME
414bf0d856c9d3dab8e6a528e46ec10066044c44
[modules/yacs.git] / src / wrappergen / src / compile_HXX2SALOME_GENERIC_CLASS_NAME.sh
1 #! /bin/bash
2 # Copyright (C) 2006-2023  CEA, EDF
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 export BASE=PREFIX/tests
22 export COMP_NAME=HXX2SALOME_GENERIC_CLASS_NAME
23 export COMP_BASE=${BASE}/${COMP_NAME}
24
25 cd ${COMP_BASE}
26 export HXX2SALOME_ROOT_DIR=PREFIX/bin/HXX2SALOME_Test
27
28 if [ ! -d ${COMP_NAME}_SRC ] ; then
29    ${HXX2SALOME_ROOT_DIR}/hxx2salome -q -q \
30          ${BASE} \
31          ${COMP_NAME}.hxx \
32          lib${COMP_NAME}.so \
33          ${BASE}
34 fi
35
36 cd ${COMP_BASE}
37 if [ ! -f ${COMP_NAME}_SRC/configure ] ; then 
38    cd ${COMP_NAME}_SRC && ./build_configure
39 fi
40
41 cd ${COMP_BASE}
42 source ${COMP_NAME}_SRC/env_${COMP_NAME}.sh
43
44 if [ ! -f ${COMP_NAME}_BUILD/config.log ] ; then 
45    cd ${COMP_NAME}_BUILD && \
46    ../${COMP_NAME}_SRC/configure \
47           --prefix=${COMP_BASE}/${COMP_NAME}_INSTALL 
48 fi
49
50 cd ${COMP_BASE}/${COMP_NAME}_BUILD
51 make && make install
52
53