]> SALOME platform Git repositories - modules/kernel.git/blob - src/KernelHelpers/Makefile.am
Salome HOME
Merge from V6_4_BR 05/12/2011
[modules/kernel.git] / src / KernelHelpers / Makefile.am
1 #  Copyright (C) 2010  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 # -* Makefile *- 
20 #
21 # Author : Guillaume Boulant (EDF) 
22 #
23
24 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
25
26 # header files 
27 salomeinclude_HEADERS =                \
28         SALOME_KernelServices.hxx      \
29         SALOME_StudyEditor.hxx         \
30         SALOMEDS_DriverDefaultImpl.hxx \
31         KernelHelpers.hxx
32
33 # Libraries targets
34 lib_LTLIBRARIES = libSalomeKernelHelpers.la
35
36 dist_libSalomeKernelHelpers_la_SOURCES =    \
37         SALOME_KernelServices.cxx           \
38         SALOME_StudyEditor.cxx              \
39         SALOMEDS_DriverDefaultImpl.cxx
40
41
42 OMNIORB_CXXFLAGS=@OMNIORB_CXXFLAGS@ @OMNIORB_INCLUDES@
43 OMNIORB_LIBS=@OMNIORB_LIBS@
44
45 libSalomeKernelHelpers_la_CPPFLAGS =    \
46         $(OMNIORB_CXXFLAGS)             \
47         -I$(srcdir)/../NamingService    \
48         -I$(srcdir)/../SALOMELocalTrace \
49         -I$(srcdir)/../Basics           \
50         -I$(srcdir)/../Utils            \
51         -I$(srcdir)/../LifeCycleCORBA   \
52         -I$(srcdir)/../Container        \
53         -I$(srcdir)/../Notification     \
54         -I$(srcdir)/../GenericObj       \
55         -I$(top_builddir)/idl
56
57 libSalomeKernelHelpers_la_LDFLAGS  =                 \
58         $(OMNIORB_LIBS)                              \
59         ../NamingService/libSalomeNS.la              \
60         ../SALOMELocalTrace/libSALOMELocalTrace.la   \
61         ../Basics/libSALOMEBasics.la                 \
62         ../Utils/libOpUtil.la                        \
63         ../LifeCycleCORBA/libSalomeLifeCycleCORBA.la \
64         ../Container/libSalomeContainer.la           \
65         ../Notification/libSalomeNotification.la     \
66         ../GenericObj/libSalomeGenericObj.la         \
67         $(top_builddir)/idl/libSalomeIDLKernel.la
68
69 #
70 # ===============================================================
71 # Executables targets
72 # ===============================================================
73 #
74 bin_PROGRAMS = KernelHelpersUseCases
75 KernelHelpersUseCases_SOURCES  = KernelHelpersUseCases.cxx
76 KernelHelpersUseCases_CPPFLAGS =\
77         $(libSalomeKernelHelpers_la_CPPFLAGS)
78
79 KernelHelpersUseCases_LDADD    = \
80         libSalomeKernelHelpers.la \
81         $(libSalomeKernelHelpers_la_LDFLAGS)