Salome HOME
CCAR: add some lacking declarations
[modules/kernel.git] / src / Container / Makefile.am
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  SALOME Container : implementation of container and engine for Kernel
23 #  File   : Makefile.am
24 #  Author : Guillaume Boulant (CSSI)
25 #  Module : KERNEL
26 #  $Header$
27 #
28 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
29
30 #
31 # ===============================================================
32 # Header to be installed
33 # ===============================================================
34 #
35 # header files  
36 salomeinclude_HEADERS = \
37         SALOME_Component_i.hxx \
38         SALOME_Container_i.hxx \
39         SALOME_FileTransfer_i.hxx \
40         SALOME_FileRef_i.hxx \
41         SALOME_ContainerManager.hxx \
42         Container_init_python.hxx \
43         SALOME_Container.hxx \
44         Salome_file_i.hxx
45
46 # Scripts to be installed
47 dist_salomescript_PYTHON =\
48         SALOME_ComponentPy.py \
49   SALOME_PyNode.py \
50         SALOME_Container.py
51
52 # These files are executable scripts
53 dist_salomescript_SCRIPTS=\
54         SALOME_ContainerPy.py
55
56 #
57 # ===============================================================
58 # Local definitions
59 # ===============================================================
60 #
61
62 # This local variable defines the list of CPPFLAGS common to all target in this package.
63 COMMON_CPPFLAGS=\
64         @PYTHON_INCLUDES@ \
65         @HDF5_INCLUDES@ \
66         -I$(srcdir)/../Basics \
67         -I$(srcdir)/../SALOMELocalTrace \
68         -I$(srcdir)/../NamingService \
69         -I$(srcdir)/../Utils \
70         -I$(srcdir)/../Registry \
71         -I$(srcdir)/../Notification \
72         -I$(srcdir)/../ResourcesManager \
73         -I$(srcdir)/../HDFPersist \
74         -I$(top_builddir)/idl \
75         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @LIBXML_INCLUDES@
76
77 # This local variable defines the list of dependant libraries common to all target in this package.
78 COMMON_LIBS =\
79         ../Registry/libRegistry.la \
80         ../Notification/libSalomeNotification.la \
81         ../ResourcesManager/libSalomeResourcesManager.la \
82         ../ResourcesManager/libResourcesManager.la \
83         ../NamingService/libSalomeNS.la \
84         ../Utils/libOpUtil.la \
85         ../SALOMELocalTrace/libSALOMELocalTrace.la \
86         ../Basics/libSALOMEBasics.la \
87         ../HDFPersist/libSalomeHDFPersist.la \
88         $(top_builddir)/idl/libSalomeIDLKernel.la \
89         @CORBA_LIBS@ \
90         $(PYTHON_LIBS)
91
92 if WITH_MPI_SEQ_CONTAINER       
93 COMMON_CPPFLAGS += @MPI_INCLUDES@
94 COMMON_LIBS += @MPI_LIBS@
95 endif
96
97 #
98 # ===============================================================
99 # Libraries targets
100 # ===============================================================
101 #
102 lib_LTLIBRARIES = libSalomeContainer.la
103 libSalomeContainer_la_SOURCES=\
104         Component_i.cxx \
105         Container_i.cxx \
106         SALOME_FileTransfer_i.cxx \
107         SALOME_FileRef_i.cxx \
108         Container_init_python.cxx \
109         SALOME_ContainerManager.cxx \
110         Salome_file_i.cxx
111
112 libSalomeContainer_la_CPPFLAGS =\
113         $(COMMON_CPPFLAGS)
114
115 libSalomeContainer_la_LDFLAGS  =\
116         -no-undefined -version-info=0:0:0 \
117         @LDEXPDYNFLAGS@
118
119 libSalomeContainer_la_LIBADD =\
120         $(COMMON_LIBS)
121
122 if WITH_PACO_PARALLEL
123 libSalomeContainer_la_CPPFLAGS += -DWITH_PACO_PARALLEL @PACO_INCLUDES@
124 libSalomeContainer_la_LIBADD += @PACO_LIBS@
125 endif
126
127 #
128 # ===============================================================
129 # Executables targets
130 # ===============================================================
131 #
132 bin_PROGRAMS = SALOME_Container
133 noinst_PROGRAMS = TestSalome_file
134
135 SALOME_Container_SOURCES =\
136         SALOME_Container.cxx \
137         SALOME_Container_SignalsHandler.cxx
138
139 SALOME_Container_CPPFLAGS =\
140         $(COMMON_CPPFLAGS)
141
142 SALOME_Container_LDADD = \
143         libSalomeContainer.la \
144         ../Basics/libSALOMEBasics.la \
145         $(HDF5_LIBS) \
146         $(CORBA_LIBS) \
147         $(PYTHON_LIBS)
148
149 if WITH_MPI_SEQ_CONTAINER       
150 SALOME_Container_LDADD += $(MPI_LIBS)
151 endif
152
153 SALOME_Container_LDFLAGS  =\
154 -Xlinker -export-dynamic
155
156 TestSalome_file_SOURCES =\
157         TestSalome_file.cxx
158
159 TestSalome_file_CPPFLAGS =\
160         $(COMMON_CPPFLAGS)
161
162 TestSalome_file_LDADD =\
163         libSalomeContainer.la \
164         ../Basics/libSALOMEBasics.la \
165         $(HDF5_LIBS) \
166         $(CORBA_LIBS) \
167         $(PYTHON_LIBS)
168
169 install-data-hook:
170         @for f in $(dist_salomescript_PYTHON) ; do \
171           chmod -f a+x $(DESTDIR)$(salomescriptdir)/$$f ; \
172         done