Salome HOME
Minor fix for notebokk access
[modules/kernel.git] / src / TestContainer / Makefile.am
1 # Copyright (C) 2007-2013  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 #  SALOME TestContainer : test of container creation and its life cycle
24 #  File   : Makefile.in
25 #  Author : Paul RASCLE, EDF - MARC TAJCHMAN, CEA
26 #  Module : SALOME
27 #  $Header$
28 #
29 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
30
31 #
32 # ===============================================================
33 # Files to be installed
34 # ===============================================================
35 #
36 # header files  
37 # Scripts to be installed
38 dist_salomescript_PYTHON = \
39         SALOME_TestComponentPy.py \
40         TestComponentPy.py \
41         TestLogger.py
42
43 #
44 # ===============================================================
45 # Local definitions
46 # ===============================================================
47 #
48
49 # This local variable defines the list of CPPFLAGS common to all target in this package.
50 COMMON_CPPFLAGS=\
51         -I$(srcdir)/../Basics \
52         -I$(srcdir)/../SALOMELocalTrace \
53         -I$(srcdir)/../NamingService \
54         -I$(srcdir)/../Utils \
55         -I$(srcdir)/../Registry \
56         -I$(srcdir)/../Notification \
57         -I$(srcdir)/../ResourcesManager \
58         -I$(srcdir)/../GenericObj \
59         -I$(srcdir)/../Container \
60         -I$(top_builddir)/idl \
61         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@
62
63
64 # This local variable defines the list of dependant libraries common to all target in this package.
65 COMMON_LIBS =\
66         ../Container/libSalomeContainer.la \
67         ../Registry/libRegistry.la \
68         ../Notification/libSalomeNotification.la \
69         ../ResourcesManager/libSalomeResourcesManager.la \
70         ../NamingService/libSalomeNS.la \
71         ../Utils/libOpUtil.la \
72         ../SALOMELocalTrace/libSALOMELocalTrace.la \
73         ../Basics/libSALOMEBasics.la \
74         ../GenericObj/libSalomeGenericObj.la \
75         $(top_builddir)/idl/libSalomeIDLKernel.la
76
77 #
78 # ===============================================================
79 # Libraries targets
80 # ===============================================================
81 #
82 lib_LTLIBRARIES = libSalomeTestComponentEngine.la
83 libSalomeTestComponentEngine_la_SOURCES  = \
84         SALOME_TestComponent.hxx \
85         SALOME_TestComponent_i.cxx \
86         SALOME_TestComponent_i.hxx
87
88 libSalomeTestComponentEngine_la_CPPFLAGS = $(COMMON_CPPFLAGS)
89 libSalomeTestComponentEngine_la_LIBADD   = $(COMMON_LIBS)
90
91 #LIB_CLIENT_IDL = SALOME_Component.idl SALOME_TestComponent.idl SALOME_Exception.idl
92
93 #
94 # ===============================================================
95 # Executables targets
96 # ===============================================================
97 #
98 bin_PROGRAMS = TestContainer TestLogger
99 TestContainer_SOURCES  = TestContainer.cxx
100 TestContainer_CPPFLAGS = $(COMMON_CPPFLAGS)
101 TestContainer_LDADD    = libSalomeTestComponentEngine.la \
102                          $(COMMON_LIBS) \
103                          ../Basics/libSALOMEBasics.la \
104                          $(CORBA_LIBS)
105
106 TestLogger_SOURCES     = TestLogger.cxx
107 TestLogger_CPPFLAGS    = $(COMMON_CPPFLAGS)
108 TestLogger_LDADD       = libSalomeTestComponentEngine.la \
109                          $(COMMON_LIBS) \
110                          ../Basics/libSALOMEBasics.la \
111                          $(CORBA_LIBS)