Salome HOME
merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_28sep2007
[modules/kernel.git] / src / ParallelContainer / Makefile.am
1 #  Copyright (C) 2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3
4 #  This library is free software; you can redistribute it and/or 
5 #  modify it under the terms of the GNU Lesser General Public 
6 #  License as published by the Free Software Foundation; either 
7 #  version 2.1 of the License. 
8
9 #  This library is distributed in the hope that it will be useful, 
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 #  Lesser General Public License for more details. 
13
14 #  You should have received a copy of the GNU Lesser General Public 
15 #  License along with this library; if not, write to the Free Software 
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 #
21 #
22 #  File   : Makefile.am
23 #  Author : AndrĂ© RIBES (EDF)
24 #  Module : KERNEL
25 #
26
27 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
28
29 #
30 # ===============================================================
31 # Header to be installed
32 # ===============================================================
33 #
34 # header files  
35 salomeinclude_HEADERS = SALOME_ParallelComponent_i.hxx \
36                         SALOME_ParallelContainer_i.hxx \
37                         Parallel_Salome_file_i.hxx
38
39 #
40 # ===============================================================
41 # Local definitions
42 # ===============================================================
43 #
44
45 # This local variable defines the list of CPPFLAGS common to all target in this package.
46 COMMON_CPPFLAGS= -I$(top_srcdir)/src/Container \
47                  -I$(top_srcdir)/src/Notification \
48                  -I$(top_srcdir)/src/SALOMELocalTrace \
49                  -I$(top_srcdir)/src/Basics \
50                  -I$(top_srcdir)/src/NamingService \
51                  -I$(top_srcdir)/src/Registry \
52                  -I$(top_srcdir)/src/Utils \
53                  -I$(srcdir)/../HDFPersist \
54                  -I$(top_builddir)/salome_adm/unix \
55                  -I$(top_builddir)/idl \
56                  -I$(top_srcdir)/src/SALOMETraceCollector \
57                  @CORBA_CXXFLAGS@ \
58                  @CORBA_INCLUDES@ \
59                  @PACO_INCLUDES@
60
61 # This local variable defines the list of dependant libraries common to all target in this package.
62 COMMON_LIBS = $(top_builddir)/src/Container/libSalomeContainer.la \
63               $(top_builddir)/src/HDFPersist/libSalomeHDFPersist.la \
64               $(top_builddir)/idl/libSalomeParallelIDLKernel.la \
65               $(top_builddir)/idl/libSalomeIDLKernel.la \
66               @CORBA_LIBS@ \
67               @PACO_LIBS@
68
69 #
70 # ===============================================================
71 # Libraries targets
72 # ===============================================================
73 #
74 lib_LTLIBRARIES = libSalomeParallelContainer.la 
75
76 libSalomeParallelContainer_la_SOURCES  = SALOME_ParallelComponent_i.cxx \
77                                          SALOME_ParallelContainer_i.cxx \
78                                          $(top_srcdir)/src/Container/Salome_file_i.cxx \
79                                          Parallel_Salome_file_i.cxx
80
81 libSalomeParallelContainer_la_CXXFLAGS = $(COMMON_CPPFLAGS)
82
83 libSalomeParallelContainer_la_LIBADD   = $(COMMON_LIBS)
84
85 libSalomeParallelContainer_la_LDFLAGS = -no-undefined -version-info=0:0:0
86
87 #
88 # ===============================================================
89 # Executables targets
90 # ===============================================================
91 #
92
93 if MPI_IS_OK
94 bin_mpi_programs = SALOME_ParallelContainerProxyMpi \
95                    SALOME_ParallelContainerNodeMpi 
96 endif
97
98 bin_PROGRAMS = SALOME_ParallelContainerProxyDummy \
99                SALOME_ParallelContainerNodeDummy \
100                $(bin_mpi_programs)
101
102 SALOME_ParallelContainerProxyDummy_SOURCES  = SALOME_ParallelContainerProxyDummy.cxx
103 SALOME_ParallelContainerProxyDummy_CXXFLAGS = $(COMMON_CPPFLAGS)
104 SALOME_ParallelContainerProxyDummy_LDADD    = libSalomeParallelContainer.la \
105                                               -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_omnithread \
106                                               $(COMMON_LIBS)
107
108 SALOME_ParallelContainerNodeDummy_SOURCES  = SALOME_ParallelContainerNodeDummy.cxx
109 SALOME_ParallelContainerNodeDummy_CXXFLAGS = $(COMMON_CPPFLAGS)
110 SALOME_ParallelContainerNodeDummy_LDADD    = libSalomeParallelContainer.la \
111                                              -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_omnithread \
112                                               $(COMMON_LIBS)
113
114 SALOME_ParallelContainerProxyMpi_SOURCES  = SALOME_ParallelContainerProxyMpi.cxx
115 SALOME_ParallelContainerProxyMpi_CXXFLAGS = $(COMMON_CPPFLAGS) @MPI_INCLUDES@
116 SALOME_ParallelContainerProxyMpi_LDADD    = libSalomeParallelContainer.la \
117                                             -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_mpi -lPaCO_omnithread \
118                                             @MPI_LIBS@ \
119                                             $(COMMON_LIBS)
120
121
122 SALOME_ParallelContainerNodeMpi_SOURCES  = SALOME_ParallelContainerNodeMpi.cxx
123 SALOME_ParallelContainerNodeMpi_CXXFLAGS = $(COMMON_CPPFLAGS) @MPI_INCLUDES@
124 SALOME_ParallelContainerNodeMpi_LDADD    = libSalomeParallelContainer.la \
125                                            -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_mpi -lPaCO_omnithread \
126                                            @MPI_LIBS@\
127                                            $(COMMON_LIBS)
128
129