blob: 652663b0ff1b6ed265859396e50ec0ff607209e0 [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001#
2# Copyright 2008 Free Software Foundation, Inc.
3# Copyright 2010 Range Networks, Inc.
4#
5# This software is distributed under the terms of the GNU Public License.
6# See the COPYING file in the main directory for details.
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation, either version 3 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20#
21
22include $(top_srcdir)/Makefile.common
23
24AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(USRP_CFLAGS)
25AM_CXXFLAGS = -ldl -lpthread
26
27#rev2dir = $(datadir)/usrp/rev2
28#rev4dir = $(datadir)/usrp/rev4
29
30#dist_rev2_DATA = std_inband.rbf
31#dist_rev4_DATA = std_inband.rbf
32
33EXTRA_DIST = \
34 README \
35 README.Talgorithm
36
37noinst_LTLIBRARIES = libtransceiver.la
38
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000039COMMON_SOURCES = \
dburgessb3a0ca42011-10-12 07:44:40 +000040 radioInterface.cpp \
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000041 radioVector.cpp \
42 radioClock.cpp \
dburgessb3a0ca42011-10-12 07:44:40 +000043 sigProcLib.cpp \
44 Transceiver.cpp \
45 USRPDevice.cpp \
46 DummyLoad.cpp
47
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000048libtransceiver_la_SOURCES = \
kurtis.heimerl9b557832011-11-26 03:18:34 +000049 $(COMMON_SOURCES) \
50 radioIO.cpp
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000051
dburgessb3a0ca42011-10-12 07:44:40 +000052noinst_PROGRAMS = \
53 USRPping \
54 transceiver \
55 sigProcLibTest
56
57noinst_HEADERS = \
58 Complex.h \
59 radioInterface.h \
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000060 radioVector.h \
61 radioClock.h \
dburgessb3a0ca42011-10-12 07:44:40 +000062 radioDevice.h \
63 sigProcLib.h \
64 Transceiver.h \
65 USRPDevice.h \
66 DummyLoad.h
67
68USRPping_SOURCES = USRPping.cpp
69USRPping_LDADD = \
70 libtransceiver.la \
71 $(COMMON_LA) $(SQLITE_LA) \
72 $(USRP_LIBS)
73
74transceiver_SOURCES = runTransceiver.cpp
75transceiver_LDADD = \
76 libtransceiver.la \
77 $(GSM_LA) \
78 $(COMMON_LA) $(SQLITE_LA) \
79 $(USRP_LIBS)
80
81sigProcLibTest_SOURCES = sigProcLibTest.cpp
82sigProcLibTest_LDADD = \
83 libtransceiver.la \
84 $(GSM_LA) \
85 $(COMMON_LA) $(SQLITE_LA) \
86 $(USRP_LIBS)
87
88
89MOSTLYCLEANFILES +=
90
91#radioInterface.cpp
92#ComplexTest.cpp
93#sigProcLibTest.cpp
94#sweepGenerator.cpp
95#testRadio.cpp
96