]> SALOME platform Git repositories - modules/kernel.git/blob - bin/Makefile.am
Salome HOME
Integration of 0019971: A patch for cmake compilation.
[modules/kernel.git] / bin / Makefile.am
1 # Copyright (C) 2005  OPEN CASCADE, CEA, EDF R&D, LEG
2 #           PRINCIPIA R&D, EADS CCR, Lip6, BV, CEDRAT
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 # -* Makefile *- 
19 #
20 # Author : Guillaume Boulant (CSSI)
21 # Module : KERNEL
22 # $Header$
23 #
24
25
26 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
27
28 #
29 # ===============================================================
30 # Files to be installed
31 # ===============================================================
32 #
33
34 # These files are data, module or lib files
35 dist_salomescript_DATA =        \
36         config_appli.xml        \
37         salome.launch
38
39 nodist_salomescript_DATA =      \
40         VERSION
41
42 # These files are executable scripts
43 dist_salomescript_SCRIPTS =             \
44         addToKillList.py                \
45         appli_clean.sh                  \
46         appli_gen.py                    \
47         appli_install.sh                \
48         createAppli.sh                  \
49         envSalome.py                    \
50         killSalome.py                   \
51         killSalomeWithPort.py           \
52         launchConfigureParser.py        \
53         launchSalome.py                 \
54         nameserver.py                   \
55         NSparam.py                      \
56         orbmodule.py                    \
57         runIDLparser                    \
58         runNS.py                        \
59         runNS.sh                        \
60         runSalome                       \
61         runSalome.csh                   \
62         runSalome.ksh                   \
63         runSalome.py                    \
64         salomeConsole.py                \
65         salome_session.py               \
66         salome_utils.py                 \
67         server.py                       \
68         setenv.py                       \
69         showNS.py                       \
70         shutdownSalome.py               \
71         virtual_salome.py               \
72         waitContainers.py               \
73         waitNS.py                       \
74         waitNS.sh
75
76 EXTRA_DIST = appliskel
77
78 dist-hook:
79         rm -rf `find $(distdir)/appliskel -name CVS`
80
81 DISTCLEANFILES = $(top_builddir)/bin/salome/Makefile.am
82
83 # This is an ugly target to avoid exploring the appliskel subdirectory.
84 install-exec-local:
85         $(INSTALL) -d $(DESTDIR)$(salomescriptdir)
86         $(RM) -rf $(DESTDIR)$(salomescriptdir)/appliskel 1> /dev/null 2>&1
87         cp -r $(srcdir)/appliskel $(DESTDIR)$(salomescriptdir)
88         chmod a+x -R $(DESTDIR)$(salomescriptdir)/appliskel
89         find $(DESTDIR)$(salomescriptdir) -name CVS -prune -exec rm -rf {} \;
90
91 uninstall-local:
92         if test -d $(DESTDIR)$(salomescriptdir)/appliskel; then \
93           find $(DESTDIR)$(salomescriptdir)/appliskel -exec chmod +w {} ';' ; \
94           rm -rf $(DESTDIR)$(salomescriptdir)/appliskel; \
95         fi;
96