Salome HOME
Search runSalome.py instead of runSalome for KERNEL detection
[modules/yacs.git] / src / wrappergen / src / Makefile.am
1 # Copyright (C) 2006-2013  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 bindir=${prefix}/bin/HXX2SALOME_Test
21
22 ENV_SH=$(DESTDIR)${bindir}/env_HXX2SALOME.sh
23 ENV_CSH=$(DESTDIR)${bindir}/env_HXX2SALOME.csh
24
25 HXX2SALOMESCRIPTS =    hxx2salome hxx2salome_check hxx2salome_cpp hxx2salome_corba \
26                 parse01.awk \
27                 parse0.awk \
28                 parse1.awk \
29                 parse2.awk \
30                 parse30.awk \
31                 parse3.awk \
32                 parse4.awk \
33                 parse5.awk \
34                 renameSalomeModule \
35                 runIDLparser \
36                 compile_HXX2SALOME_GENERIC_CLASS_NAME.sh
37
38 bin_SCRIPTS=  $(HXX2SALOMESCRIPTS)
39
40 EXTRA_DIST = $(HXX2SALOMESCRIPTS) HXX2SALOME_GENERIC_CLASS_NAME_SRC
41
42 install-exec-hook: install_sh install_csh
43         \cp -rf ${srcdir}/HXX2SALOME_GENERIC_CLASS_NAME_SRC $(DESTDIR)${bindir}
44
45 install_sh:
46         echo "#------ HXX2SALOME ------" > ${ENV_SH}
47         echo "export HXX2SALOME_ROOT_DIR=$(DESTDIR)${bindir}" >> ${ENV_SH}
48         echo "export PATH=\$${HXX2SALOME_ROOT_DIR}:\$${PATH}" >> ${ENV_SH}
49         echo "##" >> ${ENV_SH}
50
51 install_csh:
52         echo "#------ HXX2SALOME ------" > ${ENV_CSH}
53         echo "setenv HXX2SALOME_ROOT_DIR $(DESTDIR)${bindir}" >> ${ENV_CSH}
54         echo "setenv PATH \$${HXX2SALOME_ROOT_DIR}:\$${PATH}" >> ${ENV_CSH}
55         echo "##" >> ${ENV_CSH}
56
57 uninstall-local:
58         if test -d $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC; then \
59         chmod -R +w $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC ; fi
60         rm -rf $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC
61         rm -rf $(ENV_CSH) ${ENV_SH}