summaryrefslogtreecommitdiff
path: root/gr-qtgui/src/lib/Makefile.am
blob: 913b2bd81d8612ef311b40caae7f4f4d3a615b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#
# Copyright 2008 Free Software Foundation, Inc.
# 
# This file is part of GNU Radio
# 
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# 
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
# 

include $(top_srcdir)/Makefile.common

# Install this stuff so that it ends up as the gnuradio.qtgui module
# This usually ends up at:
#   ${prefix}/lib/python${python_version}/site-packages/gnuradio/qtgui

ourpythondir = $(grpythondir)/qtgui
ourlibdir    = $(grpyexecdir)/qtgui

AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) \
              $(QT_INCLUDES) -I. $(WITH_INCLUDES)

SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
	$(WITH_SWIG_INCLUDES) $(WITH_INCLUDES)

ALL_IFILES = 				\
	$(LOCAL_IFILES)			\
	$(NON_LOCAL_IFILES)		

NON_LOCAL_IFILES =			\
	$(GNURADIO_I)

LOCAL_IFILES = 				\
	$(top_srcdir)/gr-qtgui/src/lib/qtgui.i

# These files are built by SWIG.  The first is the C++ glue.
# The second is the python wrapper that loads the shared library
# and knows how to call our extensions.

# Only include these files in the build if qtgui passes configure checks
# This is mostly to help make distcheck pass
if BUILD_QT
QMAKE_SOURCES = 				\
	spectrumdisplayform_moc.cc		\
	FrequencyDisplayPlot_moc.cc	 	\
	TimeDomainDisplayPlot_moc.cc		\
	WaterfallDisplayPlot_moc.cc		\
	Waterfall3DDisplayPlot_moc.cc		\
	spectrumdisplayform_ui.h
endif

EXTRA_DIST = spectrumdisplayform.ui

BUILT_SOURCES = 				\
	qtgui.cc				\
	qtgui.py				\
	$(QMAKE_SOURCES)

# This gets qtgui.py installed in the right place
ourpython_PYTHON =			\
	qtgui.py

# Build the library for Python module to link against
ourlib_LTLIBRARIES = _qtgui.la

# Build the normal library for C++ apps to link against
lib_LTLIBRARIES = libqtgui.la

# These are the source files that go into the shared library
libqtgui_la_SOURCES = 	\
	spectrumdisplayform.cc			\
	FrequencyDisplayPlot.cc 		\
	TimeDomainDisplayPlot.cc		\
	WaterfallDisplayPlot.cc			\
	Waterfall3DDisplayPlot.cc		\
	waterfallGlobalData.cc			\
	SpectrumGUIClass.cc			\
	spectrumUpdateEvents.cc			\
	plot_waterfall.cc			\
	$(QMAKE_SOURCES)			\
	qtgui_sink_c.cc				\
	qtgui_sink_f.cc

_qtgui_la_SOURCES = 			\
	$(libqtgui_la_SOURCES)		\
	qtgui.cc

# These headers get installed in ${prefix}/include/gnuradio
grinclude_HEADERS =			\
	spectrumdisplayform.h		\
	FrequencyDisplayPlot.h		\
	TimeDomainDisplayPlot.h		\
	WaterfallDisplayPlot.h		\
	Waterfall3DDisplayPlot.h	\
	SpectrumGUIClass.h		\
	waterfallGlobalData.h		\
	highResTimeFunctions.h		\
	plot_waterfall.h		\
	spectrumUpdateEvents.h		\
	qtgui.h				\
	qtgui_sink_c.h			\
	qtgui_sink_f.h

if BUILD_QT
%_moc.cc : %.h
	$(QT_MOC_EXEC) -DQT_SHARED -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB $< -o $@

%_ui.h : %.ui
	$(QT_UIC_EXEC) $< -o $@
else
%_moc.cc : %.h
	touch $@

%_ui.h : %.ui
	touch $@
endif

# magic flags
_qtgui_la_LDFLAGS = $(NO_UNDEFINED) -module -avoid-version
libqtgui_la_LDFLAGS = $(NO_UNDEFINED) -version-info 0:0:0

# link the library against the c++ standard library
_qtgui_la_LIBADD = 		\
	$(PYTHON_LDFLAGS)	\
	$(GNURADIO_CORE_LA)	\
	-lstdc++		\
	$(QT_LIBS)


libqtgui_la_LIBADD = 		\
	$(GNURADIO_CORE_LA)	\
	-lstdc++		\
	$(QT_LIBS)

qtgui.cc qtgui.py: qtgui.i $(ALL_IFILES)
	$(SWIG) $(SWIGPYTHONARGS) -module qtgui -o qtgui.cc $(LOCAL_IFILES)

# These swig headers get installed in ${prefix}/include/gnuradio/swig
swiginclude_HEADERS = 			\
	$(LOCAL_IFILES)


MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc

# Don't distribute output of swig
dist-hook:
	@for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done
	@for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done