Salome HOME
CMake: replacing CMAKE_* variables by PROJECT_* variables
[modules/kernel.git] / src / DSC / ParallelDSC / Makefile.am
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
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 #  File   : Makefile.am
21 #  Author : AndrĂ© RIBES (EDF)
22 #  Module : KERNEL
23 #
24 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
25
26 #
27 # ===============================================================
28 # Header to be installed
29 # ===============================================================
30 #
31 # header files  
32 salomeinclude_HEADERS = ParallelDSC_i.hxx \
33                         Param_Double_Port_provides_i.hxx \
34                         Param_Double_Port_uses_i.hxx
35
36 #
37 # ===============================================================
38 # Local definitions
39 # ===============================================================
40 #
41
42 # This local variable defines the list of CPPFLAGS common to all target in this package.
43 COMMON_CPPFLAGS= -I$(top_srcdir)/src/Container \
44                  -I$(top_srcdir)/src/ParallelContainer \
45                  -I$(top_srcdir)/src/Notification \
46                  -I$(top_srcdir)/src/SALOMELocalTrace \
47                  -I$(top_srcdir)/src/Basics \
48                  -I$(top_srcdir)/src/NamingService \
49                  -I$(top_srcdir)/src/Utils \
50                  -I$(top_srcdir)/src/DSC/DSC_Basic \
51                  -I$(top_srcdir)/src/GenericObj \
52                  -I$(top_builddir)/idl \
53                  -I$(top_srcdir)/src/Registry \
54                  -I$(top_srcdir)/src/Utils \
55                  @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ \
56                  @PACO_INCLUDES@ @MPI_INCLUDES@
57
58 # This local variable defines the list of dependant libraries common to all target in this package.
59 COMMON_LIBS = 
60
61 #
62 # ===============================================================
63 # Libraries targets
64 # ===============================================================
65 #
66 lib_LTLIBRARIES =  libSalomeParallelDSCContainer.la 
67
68 libSalomeParallelDSCContainer_la_SOURCES  = ParallelDSC_i.cxx \
69                                             Param_Double_Port_provides_i.cxx \
70                                             Param_Double_Port_uses_i.cxx
71
72 libSalomeParallelDSCContainer_la_CPPFLAGS = $(COMMON_CPPFLAGS)
73
74 libSalomeParallelDSCContainer_la_LIBADD   = $(COMMON_LIBS)
75
76 libSalomeParallelDSCContainer_la_LDFLAGS = -no-undefined -version-info=0:0:0
77