~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/io/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# Copyright 2001,2003,2004 Free Software Foundation, Inc.
 
2
# Copyright 2001,2003,2004,2006,2007,2008 Free Software Foundation, Inc.
3
3
4
4
# This file is part of GNU Radio
5
5
22
22
include $(top_srcdir)/Makefile.common
23
23
 
24
24
 
25
 
INCLUDES = $(STD_DEFINES_AND_INCLUDES)
 
25
AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(WITH_INCLUDES)
26
26
 
27
27
noinst_LTLIBRARIES = libio.la
28
28
 
29
29
 
30
30
libio_la_SOURCES =                      \
31
31
        gr_file_sink.cc                 \
 
32
        gr_file_sink_base.cc            \
32
33
        gr_file_source.cc               \
33
34
        gr_file_descriptor_sink.cc      \
34
35
        gr_file_descriptor_source.cc    \
 
36
        gr_histo_sink_f.cc              \
35
37
        gr_message_sink.cc              \
36
38
        gr_message_source.cc            \
37
39
        gr_oscope_guts.cc               \
50
52
        microtune_xxxx_eval_board.cc    \
51
53
        ppio.cc                         \
52
54
        ppio_ppdev.cc                   \
53
 
        sdr_1000.cc                     
 
55
        sdr_1000.cc                     \
 
56
        gr_udp_sink.cc                  \
 
57
        gr_udp_source.cc                \
 
58
        gr_wavfile_sink.cc              \
 
59
        gr_wavfile_source.cc            \
 
60
        gri_wavfile.cc
54
61
 
55
62
grinclude_HEADERS =                     \
56
63
        gr_file_sink.h                  \
 
64
        gr_file_sink_base.h             \
57
65
        gr_file_source.h                \
58
66
        gr_file_descriptor_sink.h       \
59
67
        gr_file_descriptor_source.h     \
 
68
        gr_histo_sink_f.h               \
60
69
        gr_message_sink.h               \
61
70
        gr_message_source.h             \
62
71
        gr_oscope_guts.h                \
77
86
        microtune_xxxx_eval_board.h     \
78
87
        ppio.h                          \
79
88
        ppio_ppdev.h                    \
80
 
        sdr_1000.h                      
 
89
        sdr_1000.h                      \
 
90
        gr_udp_sink.h                   \
 
91
        gr_udp_source.h                 \
 
92
        gr_wavfile_source.h             \
 
93
        gr_wavfile_sink.h               \
 
94
        gri_wavfile.h
 
95
 
 
96
 
81
97
 
82
98
 
83
99
swiginclude_HEADERS =                   \
84
100
        io.i                            \
85
101
        gr_file_sink.i                  \
 
102
        gr_file_sink_base.i             \
86
103
        gr_file_source.i                \
87
104
        gr_file_descriptor_sink.i       \
88
105
        gr_file_descriptor_source.i     \
 
106
        gr_histo_sink.i                 \
89
107
        gr_message_sink.i               \
90
108
        gr_message_source.i             \
91
109
        gr_oscope_sink.i                \
93
111
        microtune_4702_eval_board.i     \
94
112
        microtune_4937_eval_board.i     \
95
113
        ppio.i                          \
96
 
        sdr_1000.i                      
 
114
        sdr_1000.i                      \
 
115
        gr_udp_sink.i                   \
 
116
        gr_udp_source.i                 \
 
117
        gr_wavfile_source.i             \
 
118
        gr_wavfile_sink.i
 
119