Salome HOME
- New Version with PaCO++
[modules/kernel.git] / src / ParallelContainer / 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 #  File   : Makefile.am
23 #  Author : AndrĂ© RIBES (EDF)
24 #  Module : KERNEL
25 #
26 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
27
28 #
29 # ===============================================================
30 # Header to be installed
31 # ===============================================================
32 #
33 # header files  
34 salomeinclude_HEADERS = SALOME_ParallelComponent_i.hxx \
35                         SALOME_ParallelContainer_i.hxx \
36                         SALOME_ParallelContainerProxy_i.hxx \
37                         SALOME_ParallelGlobalProcessVar_i.hxx \
38                         Parallel_Salome_file_i.hxx
39
40 #
41 # ===============================================================
42 # Local definitions
43 # ===============================================================
44 #
45
46 # This local variable defines the list of CPPFLAGS common to all target in this package.
47 COMMON_CPPFLAGS= -I$(top_srcdir)/src/Container \
48                  -I$(top_srcdir)/src/Notification \
49                  -I$(top_srcdir)/src/SALOMELocalTrace \
50                  -I$(top_srcdir)/src/Basics \
51                  -I$(top_srcdir)/src/NamingService \
52                  -I$(top_srcdir)/src/Registry \
53                  -I$(top_srcdir)/src/Utils \
54                  -I$(srcdir)/../HDFPersist \
55                  -I$(top_builddir)/idl \
56                  -I$(top_srcdir)/src/SALOMETraceCollector \
57                  @PYTHON_INCLUDES@ \
58                  @CORBA_CXXFLAGS@ \
59                  @CORBA_INCLUDES@ \
60                  @MPI_INCLUDES@ \
61                  @PACO_INCLUDES@
62
63 # This local variable defines the list of dependant libraries common to all target in this package.
64 COMMON_LIBS = $(top_builddir)/src/Container/libSalomeContainer.la \
65               $(top_builddir)/src/HDFPersist/libSalomeHDFPersist.la \
66               $(top_builddir)/idl/libSalomeParallelIDLKernel.la \
67               $(top_builddir)/idl/libSalomeIDLKernel.la \
68               @CORBA_LIBS@ \
69               @PACO_LIBS@ \
70               $(PYTHON_LIBS)
71
72 #
73 # ===============================================================
74 # Libraries targets
75 # ===============================================================
76 #
77 lib_LTLIBRARIES = libSalomeParallelContainer.la 
78
79 libSalomeParallelContainer_la_SOURCES  = SALOME_ParallelComponent_i.cxx \
80                                          SALOME_ParallelContainer_i.cxx \
81                                          SALOME_ParallelContainerProxy_i.cxx \
82                                          $(top_srcdir)/src/Container/Salome_file_i.cxx \
83                                          Parallel_Salome_file_i.cxx \
84                                          SALOME_ParallelGlobalProcessVar_i.cxx
85
86 libSalomeParallelContainer_la_CXXFLAGS = $(COMMON_CPPFLAGS)
87
88 libSalomeParallelContainer_la_LIBADD   = $(COMMON_LIBS) @MPI_LIBS@
89
90 libSalomeParallelContainer_la_LDFLAGS = -no-undefined -version-info=0:0:0
91
92 #
93 # ===============================================================
94 # Executables targets
95 # ===============================================================
96 #
97
98 if MPI_IS_OK
99 bin_mpi_programs = SALOME_ParallelContainerProxyMpi \
100                    SALOME_ParallelContainerNodeMpi 
101 endif
102
103 bin_PROGRAMS = SALOME_ParallelContainerProxyDummy \
104                SALOME_ParallelContainerNodeDummy \
105                $(bin_mpi_programs)
106
107 SALOME_ParallelContainerProxyDummy_SOURCES  = SALOME_ParallelContainerProxyDummy.cxx
108 SALOME_ParallelContainerProxyDummy_CXXFLAGS = $(COMMON_CPPFLAGS)
109 SALOME_ParallelContainerProxyDummy_LDADD    = libSalomeParallelContainer.la \
110                                               -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_omnithread \
111                                               $(COMMON_LIBS)
112
113 SALOME_ParallelContainerNodeDummy_SOURCES  = SALOME_ParallelContainerNodeDummy.cxx
114 SALOME_ParallelContainerNodeDummy_CXXFLAGS = $(COMMON_CPPFLAGS)
115 SALOME_ParallelContainerNodeDummy_LDADD    = libSalomeParallelContainer.la \
116                                              -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_omnithread \
117                                               $(COMMON_LIBS)
118
119 SALOME_ParallelContainerProxyMpi_SOURCES  = SALOME_ParallelContainerProxyMpi.cxx
120 SALOME_ParallelContainerProxyMpi_CXXFLAGS = $(COMMON_CPPFLAGS) @MPI_INCLUDES@
121 SALOME_ParallelContainerProxyMpi_LDADD    = libSalomeParallelContainer.la \
122                                             -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_mpi -lPaCO_omnithread \
123                                             @MPI_LIBS@ \
124                                             $(COMMON_LIBS)
125
126
127 SALOME_ParallelContainerNodeMpi_SOURCES  = SALOME_ParallelContainerNodeMpi.cxx
128 SALOME_ParallelContainerNodeMpi_CXXFLAGS = $(COMMON_CPPFLAGS) @MPI_INCLUDES@
129 SALOME_ParallelContainerNodeMpi_LDADD    = libSalomeParallelContainer.la \
130                                            -L@PACOPATH@/lib -lPaCO_dummy -lPaCO_mpi -lPaCO_omnithread \
131                                            @MPI_LIBS@\
132                                            $(COMMON_LIBS)
133
134