Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / SUIT / Makefile.in
1 #  Copyright (C) 2005  CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA R&D
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 #  File   : Makefile.in
20 #  Author : Vladimir Klyachin (OCN)
21 #  Module : suit
22 #  $Header$
23
24 top_srcdir=@top_srcdir@
25 top_builddir=../..
26 srcdir=@srcdir@
27 VPATH=.:@srcdir@:@srcdir@/resources
28
29
30 @COMMENCE@
31
32 # header files 
33 EXPORT_HEADERS= SUIT.h \
34          SUIT_ActionOperation.h \
35          SUIT_Application.h \
36          SUIT_Convertor.h \
37          SUIT_DataObject.h \
38          SUIT_DataObjectIterator.h \
39          SUIT_DataObjectKey.h \
40          SUIT_DataOwner.h \
41          SUIT_Desktop.h \
42          SUIT_ExceptionHandler.h \
43          SUIT_FileDlg.h \
44          SUIT_FileValidator.h \
45          SUIT_MessageBox.h \
46          SUIT_Operation.h \
47          SUIT_OverrideCursor.h \
48          SUIT_ParserSettings.h \
49          SUIT_PopupClient.h \
50          SUIT_ResourceMgr.h \
51          SUIT_SelectionMgr.h \
52          SUIT_Selector.h \
53          SUIT_Session.h \
54          SUIT_SmartPtr.h \
55          SUIT_Study.h \
56          SUIT_ToolButton.h \
57          SUIT_Tools.h \
58          SUIT_ViewManager.h \
59          SUIT_ViewModel.h \
60          SUIT_ViewWindow.h \
61          SUIT_SelectionFilter.h \
62          SUIT_Accel.h \
63          SUIT_TreeSync.h
64
65 # .po files to transform in .qm
66 PO_FILES = SUIT_images.po \
67            SUIT_msg_en.po 
68                      
69 # Libraries targets
70 LIB = libsuit.la
71
72 LIB_SRC= SUIT_ActionOperation.cxx \
73          SUIT_Application.cxx \
74          SUIT_DataObject.cxx \
75          SUIT_DataObjectIterator.cxx \
76          SUIT_DataObjectKey.cxx \
77          SUIT_DataOwner.cxx \
78          SUIT_Desktop.cxx \
79          SUIT_ExceptionHandler.cxx \
80          SUIT_FileDlg.cxx \
81          SUIT_FileValidator.cxx \
82          SUIT_MessageBox.cxx \
83          SUIT_Operation.cxx \
84          SUIT_OverrideCursor.cxx \
85          SUIT_ParserSettings.cxx \
86          SUIT_PopupClient.cxx \
87          SUIT_ResourceMgr.cxx \
88          SUIT_SelectionMgr.cxx \
89          SUIT_Selector.cxx \
90          SUIT_Session.cxx \
91          SUIT_Study.cxx \
92          SUIT_ToolButton.cxx \
93          SUIT_Tools.cxx \
94          SUIT_ViewManager.cxx \
95          SUIT_ViewModel.cxx \
96          SUIT_ViewWindow.cxx \
97          SUIT_SelectionFilter.cxx \
98          SUIT_Accel.cxx 
99
100 LIB_MOC = SUIT_ActionOperation.h \
101           SUIT_Application.h \
102           SUIT_DataObject.h \
103           SUIT_Desktop.h \
104           SUIT_FileDlg.h \
105           SUIT_Operation.h \
106           SUIT_PopupClient.h \
107           SUIT_Session.h \
108           SUIT_Study.h \
109           SUIT_ToolButton.h \
110           SUIT_ViewModel.h \
111           SUIT_ViewWindow.h \
112           SUIT_ViewManager.h \
113           SUIT_SelectionMgr.h \
114           SUIT_Selector.h \
115           SUIT_Accel.h 
116
117 RESOURCES_FILES = \
118         cascade.png \
119         htile.png \
120         vtile.png
121
122 CPPFLAGS+=$(QT_INCLUDES)
123
124 LDFLAGS+=$(QT_MT_LIBS) -lqtx
125
126 @CONCLUDE@