switch source package format to 3.0 quilt
[debian/gnuradio] / gnuradio-core / src / lib / io / Makefile.am
1 #
2 # Copyright 2001,2003,2004,2006,2007,2008 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
17 # along with GNU Radio; see the file COPYING.  If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street,
19 # Boston, MA 02110-1301, USA.
20
21
22 include $(top_srcdir)/Makefile.common
23
24
25 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(WITH_INCLUDES)
26
27 noinst_LTLIBRARIES = libio.la
28
29
30 libio_la_SOURCES =                      \
31         gr_file_sink.cc                 \
32         gr_file_sink_base.cc            \
33         gr_file_source.cc               \
34         gr_file_descriptor_sink.cc      \
35         gr_file_descriptor_source.cc    \
36         gr_histo_sink_f.cc              \
37         gr_message_sink.cc              \
38         gr_message_source.cc            \
39         gr_oscope_guts.cc               \
40         gr_oscope_sink_f.cc             \
41         gr_oscope_sink_x.cc             \
42         i2c.cc                          \
43         i2c_bitbang.cc                  \
44         i2c_bbio.cc                     \
45         i2c_bbio_pp.cc                  \
46         microtune_4702.cc               \
47         microtune_4937.cc               \
48         microtune_4702_eval_board.cc    \
49         microtune_4937_eval_board.cc    \
50         microtune_xxxx.cc               \
51         microtune_xxxx_eval_board.cc    \
52         ppio.cc                         \
53         ppio_ppdev.cc                   \
54         sdr_1000.cc                     \
55         gr_udp_sink.cc                  \
56         gr_udp_source.cc                \
57         gr_wavfile_sink.cc              \
58         gr_wavfile_source.cc            \
59         gri_wavfile.cc
60
61 grinclude_HEADERS =                     \
62         gr_file_sink.h                  \
63         gr_file_sink_base.h             \
64         gr_file_source.h                \
65         gr_file_descriptor_sink.h       \
66         gr_file_descriptor_source.h     \
67         gr_histo_sink_f.h               \
68         gr_message_sink.h               \
69         gr_message_source.h             \
70         gr_oscope_guts.h                \
71         gr_oscope_sink_f.h              \
72         gr_oscope_sink_x.h              \
73         gr_trigger_mode.h               \
74         i2c.h                           \
75         i2c_bitbang.h                   \
76         i2c_bbio.h                      \
77         i2c_bbio_pp.h                   \
78         microtune_4702.h                \
79         microtune_4937.h                \
80         microtune_4702_eval_board.h     \
81         microtune_4937_eval_board.h     \
82         microtune_eval_board_defs.h     \
83         microtune_xxxx.h                \
84         microtune_xxxx_eval_board.h     \
85         ppio.h                          \
86         ppio_ppdev.h                    \
87         sdr_1000.h                      \
88         gr_udp_sink.h                   \
89         gr_udp_source.h                 \
90         gr_wavfile_source.h             \
91         gr_wavfile_sink.h               \
92         gri_wavfile.h
93
94 if PYTHON
95 swiginclude_HEADERS =                   \
96         io.i                            \
97         gr_file_sink.i                  \
98         gr_file_sink_base.i             \
99         gr_file_source.i                \
100         gr_file_descriptor_sink.i       \
101         gr_file_descriptor_source.i     \
102         gr_histo_sink.i                 \
103         gr_message_sink.i               \
104         gr_message_source.i             \
105         gr_oscope_sink.i                \
106         microtune_xxxx_eval_board.i     \
107         microtune_4702_eval_board.i     \
108         microtune_4937_eval_board.i     \
109         ppio.i                          \
110         sdr_1000.i                      \
111         gr_udp_sink.i                   \
112         gr_udp_source.i                 \
113         gr_wavfile_source.i             \
114         gr_wavfile_sink.i
115 endif