Salome HOME
31af10284bc8124bc000e5719ab23bfce4985324
[modules/yacs.git] / src / wrappergen / src / Makefile.am
1 #  Copyright (C) 2006-2008  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 bindir=${prefix}/bin/HXX2SALOME_Test
20
21 ENV_SH=$(DESTDIR)${bindir}/env_HXX2SALOME.sh
22 ENV_CSH=$(DESTDIR)${bindir}/env_HXX2SALOME.csh
23
24 HXX2SALOMESCRIPTS =    hxx2salome hxx2salome_check hxx2salome_cpp hxx2salome_corba \
25                 parse01.awk \
26                 parse0.awk \
27                 parse1.awk \
28                 parse2.awk \
29                 parse30.awk \
30                 parse3.awk \
31                 parse4.awk \
32                 parse5.awk \
33                 renameSalomeModule \
34                 runIDLparser \
35                 compile_HXX2SALOME_GENERIC_CLASS_NAME.sh
36
37 bin_SCRIPTS=  $(HXX2SALOMESCRIPTS)
38
39 EXTRA_DIST = $(HXX2SALOMESCRIPTS) HXX2SALOME_GENERIC_CLASS_NAME_SRC
40
41 install-exec-hook: install_sh install_csh
42         \cp -rf ${srcdir}/HXX2SALOME_GENERIC_CLASS_NAME_SRC $(DESTDIR)${bindir}
43
44 install_sh:
45         echo "#------ HXX2SALOME ------" > ${ENV_SH}
46         echo "export HXX2SALOME_ROOT_DIR=$(DESTDIR)${bindir}" >> ${ENV_SH}
47         echo "export PATH=\$${HXX2SALOME_ROOT_DIR}:\$${PATH}" >> ${ENV_SH}
48         echo "##" >> ${ENV_SH}
49
50 install_csh:
51         echo "#------ HXX2SALOME ------" > ${ENV_CSH}
52         echo "setenv HXX2SALOME_ROOT_DIR $(DESTDIR)${bindir}" >> ${ENV_CSH}
53         echo "setenv PATH \$${HXX2SALOME_ROOT_DIR}:\$${PATH}" >> ${ENV_CSH}
54         echo "##" >> ${ENV_CSH}
55
56 uninstall-local:
57         if test -d $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC; then \
58         chmod -R +w $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC ; fi
59         rm -rf $(DESTDIR)$(bindir)/HXX2SALOME_GENERIC_CLASS_NAME_SRC
60         rm -rf $(ENV_CSH) ${ENV_SH}