Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / Plot2d / Makefile.am
1 # Copyright (C) 2007-2013  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
23 #  File   : Makefile.in
24 #  Author : Vladimir Klyachin (OCN)
25 #  Module : Plot2d
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_PlotItems.h              \
35         Plot2d_Object.h                 \
36         Plot2d_Curve.h                  \
37         Plot2d_Histogram.h              \
38         Plot2d_FitDataDlg.h             \
39         Plot2d_Prs.h                    \
40         Plot2d_SetupViewDlg.h           \
41         Plot2d_ViewFrame.h              \
42         Plot2d_ViewManager.h            \
43         Plot2d_ViewModel.h              \
44         Plot2d_ViewWindow.h             \
45         Plot2d_Algorithm.h              \
46         Plot2d_NormalizeAlgorithm.h     \
47         Plot2d_SetupCurveDlg.h          \
48         Plot2d_ToolTip.h                \
49         Plot2d_SetupCurveScaleDlg.h     
50
51 if ENABLE_PYCONSOLE
52 salomeinclude_HEADERS +=                \
53         Plot2d_AnalyticalCurve.h        \
54         Plot2d_AnalyticalCurveDlg.h       \
55         Plot2d_AnalyticalParser.h
56 endif
57
58
59 dist_libPlot2d_la_SOURCES =             \
60         Plot2d.cxx                      \
61         Plot2d_PlotItems.cxx            \
62         Plot2d_Object.cxx               \
63         Plot2d_Curve.cxx                \
64         Plot2d_Histogram.cxx            \
65         Plot2d_FitDataDlg.cxx           \
66         Plot2d_Prs.cxx                  \
67         Plot2d_SetupViewDlg.cxx         \
68         Plot2d_ViewFrame.cxx            \
69         Plot2d_ViewManager.cxx          \
70         Plot2d_ViewModel.cxx            \
71         Plot2d_ViewWindow.cxx           \
72         Plot2d_Algorithm.cxx            \
73         Plot2d_NormalizeAlgorithm.cxx   \
74         Plot2d_SetupCurveDlg.cxx        \
75         Plot2d_SetupCurveScaleDlg.cxx   \
76         Plot2d_ToolTip.cxx              
77
78 if ENABLE_PYCONSOLE
79 dist_libPlot2d_la_SOURCES +=            \
80         Plot2d_AnalyticalCurve.cxx      \
81         Plot2d_AnalyticalCurveDlg.cxx     \
82         Plot2d_AnalyticalParser.cxx
83 endif
84
85 MOC_FILES =                             \
86         Plot2d_FitDataDlg_moc.cxx       \
87         Plot2d_SetupViewDlg_moc.cxx     \
88         Plot2d_ViewFrame_moc.cxx        \
89         Plot2d_ViewManager_moc.cxx      \
90         Plot2d_ViewModel_moc.cxx        \
91         Plot2d_ViewWindow_moc.cxx       \
92         Plot2d_SetupCurveDlg_moc.cxx    \
93         Plot2d_Algorithm_moc.cxx                \
94         Plot2d_NormalizeAlgorithm_moc.cxx       \
95         Plot2d_SetupCurveScaleDlg_moc.cxx       \
96         Plot2d_ToolTip_moc.cxx
97
98 if ENABLE_PYCONSOLE
99 MOC_FILES +=         Plot2d_AnalyticalCurveDlg_moc.cxx
100 endif
101
102 nodist_libPlot2d_la_SOURCES = $(MOC_FILES)
103
104 dist_salomeres_DATA =                           \
105         resources/plot2d_clone.png              \
106         resources/plot2d_camera_dump.png        \
107         resources/plot2d_fitall.png             \
108         resources/plot2d_fitarea.png            \
109         resources/plot2d_glpan.png              \
110         resources/plot2d_legend.png             \
111         resources/plot2d_linear.png             \
112         resources/plot2d_linear_y.png           \
113         resources/plot2d_lines.png              \
114         resources/plot2d_log.png                \
115         resources/plot2d_log_y.png              \
116         resources/plot2d_pan.png                \
117         resources/plot2d_points.png             \
118         resources/plot2d_print.png              \
119         resources/plot2d_settings.png           \
120         resources/plot2d_splines.png            \
121         resources/plot2d_analytical_curve.png   \
122         resources/plot2d_lmax_normalization.png \
123         resources/plot2d_lmin_normalization.png \
124         resources/plot2d_rmax_normalization.png \
125         resources/plot2d_rmin_normalization.png \
126         resources/plot2d_zoom.png
127
128 nodist_salomeres_DATA =         \
129         Plot2d_images.qm        \
130         Plot2d_msg_en.qm        \
131         Plot2d_msg_fr.qm 
132
133 libPlot2d_la_CPPFLAGS = $(QT_INCLUDES) $(PYTHON_INCLUDES) $(QWT_INCLUDES) \
134         -I$(srcdir)/../Qtx -I$(srcdir)/../SUIT
135
136 libPlot2d_la_LDFLAGS  = $(QWT_LIBS) $(QT_MT_LIBS) $(PYTHON_LIBS) ../SUIT/libsuit.la
137
138