Imported Upstream version 3.2.2
[debian/gnuradio] / gcell / lib / wrapper / Makefile.am
1 #
2 # Copyright 2008,2009 Free Software Foundation, Inc.
3
4 # This file is part of GNU Radio
5
6 # GNU Radio is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3, or (at your option)
9 # any later version.
10
11 # GNU Radio is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License along
17 # with this program; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #
20
21 include $(top_srcdir)/Makefile.common
22
23 AM_CPPFLAGS = $(DEFINES) $(GCELL_INCLUDES) $(FFTW3F_CFLAGS) $(WITH_INCLUDES)
24
25 noinst_LTLIBRARIES = libwrapper.la libwrapper-qa.la
26
27 #
28 # generate libtool.lo's that contain embedded SPU executables
29 #
30 gcell_all.lo: ../spu/gcell_all
31         $(GCELL_EMBEDSPU_LIBTOOL) $< $@ 
32
33 gcell_general_qa.lo: ../spu/gcell_general_qa
34         $(GCELL_EMBEDSPU_LIBTOOL) $< $@
35
36
37
38 # The primary library
39
40 libwrapper_la_SOURCES = \
41         gcp_fft_1d_r2.cc
42
43 libwrapper_la_LIBADD = \
44         gcell_all.lo
45
46
47 # The QA library
48
49 libwrapper_qa_la_SOURCES = \
50         qa_gcell_general.cc \
51         qa_gcell_wrapper.cc
52
53 # FFTW now depends on gcell, don't create circular dependency :-)
54 #       qa_gcp_fft_1d_r2.cc
55
56 libwrapper_qa_la_LIBADD = \
57         gcell_general_qa.lo
58
59 #       -lfftw3f
60
61 # Headers
62
63 # Moved to include/gcell
64 #gcellinclude_HEADERS = \
65 #       gcp_fft_1d_r2.h
66
67 noinst_HEADERS = \
68         qa_gcell_general.h \
69         qa_gcell_wrapper.h \
70         qa_gcp_fft_1d_r2.h
71
72
73 CLEANFILES = gcell_all.lo gcell_general_qa.lo
74