Salome HOME
Try to kill Salome application when a YACS Launcher job is killed
[modules/kernel.git] / src / DF / Makefile.am
1 # Copyright (C) 2007-2011  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
20 #  File   : Makefile.am
21 #  Author : Guillaume Boulant (CSSI)
22 #  Module : KERNEL
23 #
24 include $(top_srcdir)/salome_adm/unix/make_common_starter.am
25
26 #
27 # ===============================================================
28 # Files to be installed
29 # ===============================================================
30 #
31 # header files  
32 salomeinclude_HEADERS= \
33         DF_Attribute.hxx \
34         DF_Label.hxx \
35         DF_Application.hxx \
36         DF_Document.hxx \
37         DF_ChildIterator.hxx \
38         DF_Container.hxx \
39         DF_definitions.hxx
40
41 #
42 # ===============================================================
43 # Local definitions
44 # ===============================================================
45 #
46
47 # This local variable defines the list of CPPFLAGS common to all target in this package.
48 COMMON_CPPFLAGS=\
49         @BOOST_CPPFLAGS@
50
51 # This local variable defines the list of dependant libraries common to all target in this package.
52 COMMON_LIBS =
53
54 #
55 # ===============================================================
56 # Libraries targets
57 # ===============================================================
58 #
59 lib_LTLIBRARIES = libDF.la
60 libDF_la_SOURCES = \
61         DF_Attribute.cxx \
62         DF_Label.cxx \
63         DF_Document.cxx \
64         DF_Application.cxx \
65         DF_ChildIterator.cxx \
66         DF_Container.cxx \
67 \
68         DF_Attribute.hxx \
69         DF_Label.hxx \
70         DF_Application.hxx \
71         DF_Document.hxx \
72         DF_ChildIterator.hxx \
73         DF_Container.hxx \
74         DF_definitions.hxx      
75
76 libDF_la_CPPFLAGS = $(COMMON_CPPFLAGS)
77 libDF_la_LDFLAGS  = -no-undefined -version-info=0:0:0
78 libDF_la_LIBADD    = $(COMMON_LIBS)
79
80 #
81 # ===============================================================
82 # Executables targets
83 # ===============================================================
84 #
85 bin_PROGRAMS = testDF
86 testDF_SOURCES  = testDF.cxx
87 testDF_CPPFLAGS = $(COMMON_CPPFLAGS)
88 testDF_LDADD    = ./libDF.la
89