blob: 4669b99d30aadcf74b92e05de14917afb7fec5d0 [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
39libtransceiver_la_SOURCES = \
40 radioInterface.cpp \
41 sigProcLib.cpp \
42 Transceiver.cpp \
43 USRPDevice.cpp \
44 DummyLoad.cpp
45
46noinst_PROGRAMS = \
47 USRPping \
48 transceiver \
49 sigProcLibTest
50
51noinst_HEADERS = \
52 Complex.h \
53 radioInterface.h \
54 radioDevice.h \
55 sigProcLib.h \
56 Transceiver.h \
57 USRPDevice.h \
58 DummyLoad.h
59
60USRPping_SOURCES = USRPping.cpp
61USRPping_LDADD = \
62 libtransceiver.la \
63 $(COMMON_LA) $(SQLITE_LA) \
64 $(USRP_LIBS)
65
66transceiver_SOURCES = runTransceiver.cpp
67transceiver_LDADD = \
68 libtransceiver.la \
69 $(GSM_LA) \
70 $(COMMON_LA) $(SQLITE_LA) \
71 $(USRP_LIBS)
72
73sigProcLibTest_SOURCES = sigProcLibTest.cpp
74sigProcLibTest_LDADD = \
75 libtransceiver.la \
76 $(GSM_LA) \
77 $(COMMON_LA) $(SQLITE_LA) \
78 $(USRP_LIBS)
79
80
81MOSTLYCLEANFILES +=
82
83#radioInterface.cpp
84#ComplexTest.cpp
85#sigProcLibTest.cpp
86#sweepGenerator.cpp
87#testRadio.cpp
88