summaryrefslogtreecommitdiff
path: root/gr-run-waveform/Makefile.am
blob: 26601c8c31fd7e58fc84ba3ccf3224b8efd027e4 (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
#
# Copyright 2004,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.
# 

ACLOCAL_AMFLAGS = -I config
DIST_SUBDIRS = config
EXTRA_DIST = gen-xyzzy

# build the standalone waveform application
bin_PROGRAMS = run_waveform

# Rather than build a library, we just use a variable so the same code
# can be used in test cases, as well as the run-waveform application.
SRCS = xyzzy.cc xyzzy-load.c

# This is where the data file created by gen-xyzzy gets installed. This file
# is needed by run-waveform and the test case.
filesystemdir = $(datarootdir)/gnuradio/gr-run-waveform

# libpath is to support xyzzy-load.cc, filesystem.dat is the data file
BUILT_SOURCES = libpath.h filesystem.dat
dist_filesystem_DATA = filesystem.dat

# A unit test case for the XYZZY class
check_PROGRAMS = test_xyzzy
test_xyzzy_SOURCES = test_xyzzy.cc  xyzzy.cc xyzzy-load.c #$(SRCS)
test_xyzzy_CPPFLAGS = $(GUILE_CFLAGS) \
	-DSRCDIR=\"$(srcdir)\" \
	-DDATAROOTDIR=\"$(datarootdir)\"
test_xyzzy_LDADD = $(GUILE_LIBS)
test_xyzzy_DEPENDENCIES = $(BUILT_SOURCES)

# Don't install the internal header
noinst_HEADERS = xyzzy.h

# The standalone waveform application
run_waveform_SOURCES = run_waveform.cc $(SRCS)
run_waveform_CPPFLAGS = $(GUILE_CFLAGS) \
	-DSRCDIR=\"$(srcdir)\" \
	-DPKGLIBDIR=\"$(pkglibdir)\" \
	-DDATAROOTDIR=\"$(datarootdir)\"
# Uncommenting this force make to statically link in the guile library.
# Note that this will fail to link it you don't have libguile.a.
# run_waveform_LDFLAGS = -static
run_waveform_LDADD = $(GUILE_LIBS)
run_waveform_DEPENDENCIES =  $(BUILT_SOURCES)

DISTCLEANFILES = gr-run-waveform.tar.gz libpath.h filesystem.dat

libpath.h: $(srcdir)/Makefile.in  $(top_builddir)/config.status
	@echo "Generating libpath.h..."
	@rm -f libpath.tmp
	@echo '/* generated by Makefile */' > libpath.tmp
	@echo '#define SCM_PKGDATA_DIR "$(pkgdatadir)"' >> libpath.tmp
	@echo '#define SCM_LIBRARY_DIR "$(pkgdatadir)/$(GUILE_EFFECTIVE_VERSION)"'>>libpath.tmp
	@echo '#define SCM_SITE_DIR "$(pkgdatadir)/site"' >> libpath.tmp
	@echo '#define SCM_BUILD_INFO { \' >> libpath.tmp
	@echo '	{ "srcdir", "'"`cd @srcdir@; pwd`"'" }, \' >> libpath.tmp
	@echo ' { "top_srcdir",    "@top_srcdir_absolute@" }, \' >> libpath.tmp
	@echo '	{ "prefix",	   "@prefix@" }, \' >> libpath.tmp
	@echo '	{ "exec_prefix",   "@exec_prefix@" }, \' >> libpath.tmp
	@echo '	{ "bindir",	   "@bindir@" }, \' >> libpath.tmp
	@echo '	{ "sbindir",	   "@sbindir@" }, \' >> libpath.tmp
	@echo '	{ "libexecdir",	   "@libexecdir@" }, \' >> libpath.tmp
	@echo '	{ "datadir",	   "@datadir@" }, \' >> libpath.tmp
	@echo '	{ "sysconfdir",	   "@sysconfdir@" }, \' >> libpath.tmp
	@echo '	{ "sharedstatedir", "@sharedstatedir@" }, \' >> libpath.tmp
	@echo '	{ "localstatedir", "@localstatedir@" }, \' >> libpath.tmp
	@echo '	{ "libdir",	   "@libdir@" }, \' >> libpath.tmp
	@echo '	{ "infodir",	   "@infodir@" }, \' >> libpath.tmp
	@echo '	{ "mandir",	   "@mandir@" }, \' >> libpath.tmp
	@echo '	{ "includedir",	   "@includedir@" }, \' >> libpath.tmp
	@echo '	{ "pkgdatadir",	   "$(datadir)/@PACKAGE@" }, \' >> libpath.tmp
	@echo '	{ "pkglibdir",	   "$(libdir)/@PACKAGE@" }, \' >> libpath.tmp
	@echo '	{ "pkgincludedir", "$(includedir)/@PACKAGE@" }, \' \
		>> libpath.tmp
	@echo '	{ "guileversion", "@GUILE_VERSION@" }, \' >> libpath.tmp
	@echo '	{ "libguileinterface", "@LIBGUILE_INTERFACE@" }, \' \
		>> libpath.tmp
	@echo '	{ "LIBS",	   "@GUILE_LIBS@" }, \' >> libpath.tmp
	@echo '	{ "CFLAGS",	   "@GUILE_CFLAGS@" }, \' >> libpath.tmp
	@echo '	{ "buildstamp",    "'"`date`"'" }, \' >> libpath.tmp
	@echo '}' >> libpath.tmp
	@mv libpath.tmp libpath.h

# Typical usage:
#    gen-xyzzy -o filesystem.dat /usr/share/guile/1.8 /usr/local/share/guile/site
#  Where /usr/share/guile points to the system guile installation and
#  /usr/local/share/guile/site points to the GNU Radio installed guile files. Note
# that this requires GNU Radio to be installed before the outout will be correct.
filesystem.dat:
	-$(RM) -f filesystem.dat
	$(PYTHON) $(srcdir)/gen-xyzzy $(GUILE_INSTALL_PATH) $(datarootdir)/guile/site > filesystem.dat