blob: 5bad45e574bb75909e681c7c6914068f0ac46138 [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 = \
49 $(COMMON_SOURCES)
50
dburgessb3a0ca42011-10-12 07:44:40 +000051noinst_PROGRAMS = \
52 USRPping \
53 transceiver \
54 sigProcLibTest
55
56noinst_HEADERS = \
57 Complex.h \
58 radioInterface.h \
kurtis.heimerl8aea56e2011-11-26 03:18:30 +000059 radioVector.h \
60 radioClock.h \
dburgessb3a0ca42011-10-12 07:44:40 +000061 radioDevice.h \
62 sigProcLib.h \
63 Transceiver.h \
64 USRPDevice.h \
65 DummyLoad.h
66
67USRPping_SOURCES = USRPping.cpp
68USRPping_LDADD = \
69 libtransceiver.la \
70 $(COMMON_LA) $(SQLITE_LA) \
71 $(USRP_LIBS)
72
73transceiver_SOURCES = runTransceiver.cpp
74transceiver_LDADD = \
75 libtransceiver.la \
76 $(GSM_LA) \
77 $(COMMON_LA) $(SQLITE_LA) \
78 $(USRP_LIBS)
79
80sigProcLibTest_SOURCES = sigProcLibTest.cpp
81sigProcLibTest_LDADD = \
82 libtransceiver.la \
83 $(GSM_LA) \
84 $(COMMON_LA) $(SQLITE_LA) \
85 $(USRP_LIBS)
86
87
88MOSTLYCLEANFILES +=
89
90#radioInterface.cpp
91#ComplexTest.cpp
92#sigProcLibTest.cpp
93#sweepGenerator.cpp
94#testRadio.cpp
95