]> SALOME platform Git repositories - modules/gui.git/blob - src/Plot2d/Makefile.am
Salome HOME
c68c582b461f41dde53ab8b59aabde179811cc90
[modules/gui.git] / src / Plot2d / 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.in
23 #  Author : Vladimir Klyachin (OCN)
24 #  Module : Plot2d
25 #  $Header$
26 #
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 lib_LTLIBRARIES = libPlot2d.la
30
31 # header files 
32 salomeinclude_HEADERS =         \
33         Plot2d.h                \
34         Plot2d_Curve.h          \
35         Plot2d_FitDataDlg.h     \
36         Plot2d_Prs.h            \
37         Plot2d_SetupViewDlg.h   \
38         Plot2d_ViewFrame.h      \
39         Plot2d_ViewManager.h    \
40         Plot2d_ViewModel.h      \
41         Plot2d_ViewWindow.h     \
42         Plot2d_SetupCurveDlg.h  \
43         Plot2d_ToolTip.h
44
45 dist_libPlot2d_la_SOURCES =             \
46         Plot2d.cxx                      \
47         Plot2d_Curve.cxx                \
48         Plot2d_FitDataDlg.cxx           \
49         Plot2d_Prs.cxx                  \
50         Plot2d_SetupViewDlg.cxx         \
51         Plot2d_ViewFrame.cxx            \
52         Plot2d_ViewManager.cxx          \
53         Plot2d_ViewModel.cxx            \
54         Plot2d_ViewWindow.cxx           \
55         Plot2d_SetupCurveDlg.cxx        \
56         Plot2d_ToolTip.cxx
57
58 MOC_FILES =                             \
59         Plot2d_FitDataDlg_moc.cxx       \
60         Plot2d_SetupViewDlg_moc.cxx     \
61         Plot2d_ViewFrame_moc.cxx        \
62         Plot2d_ViewManager_moc.cxx      \
63         Plot2d_ViewModel_moc.cxx        \
64         Plot2d_ViewWindow_moc.cxx       \
65         Plot2d_SetupCurveDlg_moc.cxx    \
66         Plot2d_ToolTip_moc.cxx
67 nodist_libPlot2d_la_SOURCES = $(MOC_FILES)
68
69 dist_salomeres_DATA =                           \
70         resources/plot2d_clone.png              \
71         resources/plot2d_camera_dump.png        \
72         resources/plot2d_fitall.png             \
73         resources/plot2d_fitarea.png            \
74         resources/plot2d_glpan.png              \
75         resources/plot2d_legend.png             \
76         resources/plot2d_linear.png             \
77         resources/plot2d_linear_y.png           \
78         resources/plot2d_lines.png              \
79         resources/plot2d_log.png                \
80         resources/plot2d_log_y.png              \
81         resources/plot2d_pan.png                \
82         resources/plot2d_points.png             \
83         resources/plot2d_settings.png           \
84         resources/plot2d_splines.png            \
85         resources/plot2d_zoom.png
86
87 nodist_salomeres_DATA =         \
88         Plot2d_images.qm        \
89         Plot2d_msg_en.qm 
90
91 libPlot2d_la_CPPFLAGS = $(QT_INCLUDES) $(PYTHON_INCLUDES) $(QWT_INCLUDES) \
92         -I$(srcdir)/../Qtx -I$(srcdir)/../SUIT
93
94 libPlot2d_la_LDFLAGS  = $(QWT_LIBS) $(QT_MT_LIBS) ../SUIT/libsuit.la
95
96