]> SALOME platform Git repositories - modules/yacs.git/blob - src/DSC/DSC_User/Datastream/Palm/Makefile.am
Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/yacs.git] / src / DSC / DSC_User / Datastream / Palm / Makefile.am
1 # Copyright (C) 2007-2012  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
23 #  File   : Makefile.am
24 #  Author : André RIBES (EDF), Eric Fayolle (EDF)
25 #  Module : KERNEL
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 = palm_port_factory.hxx \
36                         palm_data_short_port_provides.hxx \
37                         palm_data_seq_short_port_provides.hxx \
38                         PalmCouplingPolicy.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/DSC/DSC_User \
48                  -I$(top_srcdir)/src/DSC/DSC_User/Datastream \
49                  -I$(top_srcdir)/src/DSC/DSC_Basic \
50                  -I$(top_srcdir)/src/Container \
51                  -I$(top_srcdir)/src/GenericObj \
52                  -I$(top_srcdir)/src/Notification \
53                  -I$(top_srcdir)/src/SALOMELocalTrace \
54                  -I$(top_srcdir)/src/Basics \
55                  -I$(top_srcdir)/src/Utils \
56                  -I$(top_builddir)/idl \
57                  @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
58
59 # This local variable defines the list of dependant libraries common to all target in this package.
60 COMMON_LIBS = @CORBA_LIBS@
61
62 #
63 # ===============================================================
64 # Libraries targets
65 # ===============================================================
66 #
67 noinst_LTLIBRARIES = libSalomePalm.la
68
69 libSalomePalm_la_SOURCES  = palm_port_factory.cxx 
70
71 libSalomePalm_la_CXXFLAGS = $(COMMON_CPPFLAGS)
72
73 libSalomePalm_la_LDFLAGS  = -no-undefined -version-info=0:0:0
74
75 #
76 # ===============================================================
77 # Executables targets
78 # ===============================================================
79 #
80 noinst_PROGRAMS              = test_DataIdContainer
81
82 test_DataIdContainer_SOURCES = test_DataIdContainer.cxx
83
84 test_DataIdContainer_CXXFLAGS = $(COMMON_CPPFLAGS)
85
86 test_DataIdContainer_LDFLAGS = $(COMMON_LIBS)
87