#
# Copyright 2008,2009 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)

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

NON_LOCAL_IFILES =			\
	$(GNURADIO_I)

LOCAL_IFILES = 				\
	$(srcdir)/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		\
	ConstellationDisplayPlot_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 = 	\
	FrequencyDisplayPlot.cc 		\
	TimeDomainDisplayPlot.cc		\
	WaterfallDisplayPlot.cc			\
	Waterfall3DDisplayPlot.cc		\
	waterfallGlobalData.cc			\
	ConstellationDisplayPlot.cc		\
	spectrumdisplayform.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 =			\
	FrequencyDisplayPlot.h		\
	TimeDomainDisplayPlot.h		\
	WaterfallDisplayPlot.h		\
	Waterfall3DDisplayPlot.h	\
	waterfallGlobalData.h		\
	ConstellationDisplayPlot.h	\
	highResTimeFunctions.h		\
	plot_waterfall.h		\
	spectrumdisplayform.h		\
	SpectrumGUIClass.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: $(ALL_IFILES)
	$(SWIG) $(STD_SWIG_PYTHON_ARGS) -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