Salome HOME
Using AutoTools for building procedure
[modules/geom.git] / src / EntityGUI / Makefile.am
1 #  GEOM ENTITYGUI : 
2 #
3 #  Copyright (C) 2003  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 #
24 #  File   : Makefile.in
25 #  Author : Damien COQUERET (OCC)
26 #  Modified by : Alexander BORODIN (OCN) - autotools usage
27 #  Module : GEOM
28 #  $Header: 
29
30 include $(top_srcdir)/adm_local/unix/make_common_starter.am
31
32 # Libraries targets
33 lib_LTLIBRARIES = libEntityGUI.la
34
35 # header files
36 salomeinclude_HEADERS = \
37         GEOM_EntityGUI.hxx
38
39 dist_libEntityGUI_la_SOURCES = EntityGUI.cxx \
40         EntityGUI_Skeleton_QTD.cxx \
41         EntityGUI_Point_QTD.cxx \
42         EntityGUI_Dir1_QTD.cxx \
43         EntityGUI_Dir2_QTD.cxx \
44         EntityGUI_1Sel_QTD.cxx \
45         EntityGUI_1Spin_QTD.cxx \
46         EntityGUI_2Spin_QTD.cxx \
47         EntityGUI_3Spin_QTD.cxx \
48         EntityGUI_4Spin_QTD.cxx \
49         EntityGUI_1Spin.cxx \
50         EntityGUI_2Spin.cxx \
51         EntityGUI_3Spin.cxx \
52         EntityGUI_4Spin.cxx \
53         EntityGUI_SketcherDlg.cxx \
54         EntityGUI_SubShapeDlg.cxx
55
56 MOC_FILES = \
57         EntityGUI_Skeleton_QTD_moc.cxx \
58         EntityGUI_Point_QTD_moc.cxx \
59         EntityGUI_Dir1_QTD_moc.cxx \
60         EntityGUI_Dir2_QTD_moc.cxx \
61         EntityGUI_1Sel_QTD_moc.cxx \
62         EntityGUI_1Spin_QTD_moc.cxx \
63         EntityGUI_2Spin_QTD_moc.cxx \
64         EntityGUI_3Spin_QTD_moc.cxx \
65         EntityGUI_4Spin_QTD_moc.cxx \
66         EntityGUI_1Spin_moc.cxx \
67         EntityGUI_2Spin_moc.cxx \
68         EntityGUI_3Spin_moc.cxx \
69         EntityGUI_4Spin_moc.cxx \
70         EntityGUI_SketcherDlg_moc.cxx \
71         EntityGUI_SubShapeDlg_moc.cxx
72
73 nodist_libEntityGUI_la_SOURCES= \
74          $(MOC_FILES)
75
76 # LIB_CLIENT_IDL = SALOME_Exception.idl SALOME_GenericObj.idl SALOME_Component.idl
77
78 # LIB_SERVER_IDL =  
79
80 # additionnal information to compil and link file
81
82 libEntityGUI_la_CPPFLAGS = \
83         $(QT_INCLUDES) \
84         $(CAS_CPPFLAGS) \
85         $(VTK_INCLUDES) \
86         $(PYTHON_INCLUDES) \
87         $(BOOST_CPPFLAGS) \
88         $(KERNEL_CXXFLAGS) \
89         $(GUI_CXXFLAGS) \
90         $(CORBA_CXXFLAGS) \
91         $(CORBA_INCLUDES) \
92         -I$(srcdir)/../GEOMGUI \
93         -I$(srcdir)/../DlgRef \
94         -I$(srcdir)/../GEOMBase \
95         -I$(srcdir)/../OBJECT \
96         -I$(srcdir)/../GEOMClient \
97         -I$(srcdir)/../GEOMImpl \
98         -I$(srcdir)/../GEOMFiltersSelection \
99         -I$(srcdir)/../SKETCHER \
100         -I$(top_builddir)/idl \
101         -I$(top_builddir)/salome_adm/unix
102
103 libEntityGUI_la_LDFLAGS  = \
104         ../GEOMFiltersSelection/libGEOMFiltersSelection.la \
105         ../GEOMBase/libGEOMBase.la \
106         ../SKETCHER/libGEOMSketcher.la \
107         ../GEOMGUI/libGEOM.la \
108         $(QT_MT_LIBS) \
109         $(CAS_TKTopAlgo) -lTKernel
110