Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / src / DF / 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 : Guillaume Boulant (CSSI)
24 #  Module : KERNEL
25 #
26 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
27
28 #
29 # ===============================================================
30 # Files to be installed
31 # ===============================================================
32 #
33 # header files  
34 salomeinclude_HEADERS= \
35         DF_Attribute.hxx \
36         DF_Label.hxx \
37         DF_Application.hxx \
38         DF_Document.hxx \
39         DF_ChildIterator.hxx \
40         DF_Container.hxx \
41         DF_definitions.hxx
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         @BOOST_CPPFLAGS@
52
53 # This local variable defines the list of dependant libraries common to all target in this package.
54 COMMON_LIBS =
55
56 #
57 # ===============================================================
58 # Libraries targets
59 # ===============================================================
60 #
61 lib_LTLIBRARIES = libDF.la
62 libDF_la_SOURCES = \
63         DF_Attribute.cxx \
64         DF_Label.cxx \
65         DF_Document.cxx \
66         DF_Application.cxx \
67         DF_ChildIterator.cxx \
68         DF_Container.cxx \
69 \
70         DF_Attribute.hxx \
71         DF_Label.hxx \
72         DF_Application.hxx \
73         DF_Document.hxx \
74         DF_ChildIterator.hxx \
75         DF_Container.hxx \
76         DF_definitions.hxx      
77
78 libDF_la_CPPFLAGS = $(COMMON_CPPFLAGS)
79 libDF_la_LDFLAGS  = -no-undefined -version-info=0:0:0
80 libDF_la_LIBADD    = $(COMMON_LIBS)
81
82 #
83 # ===============================================================
84 # Executables targets
85 # ===============================================================
86 #
87 bin_PROGRAMS = testDF
88 testDF_SOURCES  = testDF.cxx
89 testDF_CPPFLAGS = $(COMMON_CPPFLAGS)
90 testDF_LDADD    = ./libDF.la
91