]> git.gag.com Git - debian/gnuradio/blob - gnuradio-core/src/lib/runtime/Makefile.am
Merged jcorgan/ptrfix -r8827:8843 into the trunk.
[debian/gnuradio] / gnuradio-core / src / lib / runtime / Makefile.am
1 #
2 # Copyright 2003,2004,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 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_INCLUDES) $(WITH_INCLUDES)
25
26 noinst_LTLIBRARIES = libruntime.la libruntime-qa.la
27
28 libruntime_la_LIBADD =          \
29         $(SHM_OPEN_LIBS)
30
31
32 libruntime_la_SOURCES =                         \
33         gr_basic_block.cc                       \
34         gr_flowgraph.cc                         \
35         gr_flat_flowgraph.cc                    \
36         gr_block.cc                             \
37         gr_block_detail.cc                      \
38         gr_hier_block2.cc                       \
39         gr_hier_block2_detail.cc                \
40         gr_buffer.cc                            \
41         gr_dispatcher.cc                        \
42         gr_error_handler.cc                     \
43         gr_io_signature.cc                      \
44         gr_local_sighandler.cc                  \
45         gr_message.cc                           \
46         gr_msg_handler.cc                       \
47         gr_msg_queue.cc                         \
48         gr_pagesize.cc                          \
49         gr_preferences.cc                       \
50         gr_realtime.cc                          \
51         gr_scheduler_thread.cc                  \
52         gr_single_threaded_scheduler.cc         \
53         gr_sptr_magic.cc                        \
54         gr_sync_block.cc                        \
55         gr_sync_decimator.cc                    \
56         gr_sync_interpolator.cc                 \
57         gr_top_block.cc                         \
58         gr_top_block_impl.cc                    \
59         gr_top_block_impl_sts.cc                \
60         gr_tmp_path.cc                          \
61         gr_vmcircbuf.cc                         \
62         gr_vmcircbuf_mmap_shm_open.cc           \
63         gr_vmcircbuf_mmap_tmpfile.cc            \
64         gr_vmcircbuf_createfilemapping.cc       \
65         gr_vmcircbuf_sysv_shm.cc                \
66         gr_select_handler.cc                    
67
68 libruntime_qa_la_SOURCES =                      \
69         qa_gr_block.cc                          \
70         qa_gr_hier_block2.cc                    \
71         qa_gr_hier_block2_derived.cc            \
72         qa_gr_buffer.cc                         \
73         qa_gr_flowgraph.cc                      \
74         qa_gr_top_block.cc                      \
75         qa_gr_io_signature.cc                   \
76         qa_gr_vmcircbuf.cc                      \
77         qa_runtime.cc                           
78
79 grinclude_HEADERS =                             \
80         gr_basic_block.h                        \
81         gr_flowgraph.h                          \
82         gr_flat_flowgraph.h                     \
83         gr_block.h                              \
84         gr_block_detail.h                       \
85         gr_hier_block2.h                        \
86         gr_hier_block2_detail.h                 \
87         gr_buffer.h                             \
88         gr_complex.h                            \
89         gr_dispatcher.h                         \
90         gr_error_handler.h                      \
91         gr_io_signature.h                       \
92         gr_local_sighandler.h                   \
93         gr_message.h                            \
94         gr_msg_handler.h                        \
95         gr_msg_queue.h                          \
96         gr_pagesize.h                           \
97         gr_preferences.h                        \
98         gr_realtime.h                           \
99         gr_runtime_types.h                      \
100         gr_scheduler_thread.h                   \
101         gr_select_handler.h                     \
102         gr_single_threaded_scheduler.h          \
103         gr_sptr_magic.h                         \
104         gr_sync_block.h                         \
105         gr_sync_decimator.h                     \
106         gr_sync_interpolator.h                  \
107         gr_top_block.h                          \
108         gr_top_block_impl.h                     \
109         gr_top_block_impl_sts.h                 \
110         gr_timer.h                              \
111         gr_tmp_path.h                           \
112         gr_types.h                              \
113         gr_vmcircbuf.h                          
114
115 noinst_HEADERS =                                \
116         gr_vmcircbuf_mmap_shm_open.h            \
117         gr_vmcircbuf_mmap_tmpfile.h             \
118         gr_vmcircbuf_sysv_shm.h                 \
119         gr_vmcircbuf_createfilemapping.h        \
120         qa_gr_block.h                           \
121         qa_gr_flowgraph.h                       \
122         qa_gr_hier_block2.h                     \
123         qa_gr_hier_block2_derived.h             \
124         qa_gr_buffer.h                          \
125         qa_gr_io_signature.h                    \
126         qa_gr_top_block.h                       \
127         qa_gr_vmcircbuf.h                       \
128         qa_runtime.h                            
129
130 swiginclude_HEADERS =                   \
131         gr_basic_block.i                \
132         gr_block.i                      \
133         gr_block_detail.i               \
134         gr_hier_block2.i                \
135         gr_buffer.i                     \
136         gr_dispatcher.i                 \
137         gr_error_handler.i              \
138         gr_io_signature.i               \
139         gr_message.i                    \
140         gr_msg_handler.i                \
141         gr_msg_queue.i                  \
142         gr_realtime.i                   \
143         gr_single_threaded_scheduler.i  \
144         gr_sync_block.i                 \
145         gr_sync_decimator.i             \
146         gr_sync_interpolator.i          \
147         gr_swig_block_magic.i           \
148         gr_top_block.i                  \
149         runtime.i
150
151 MOSTLYCLEANFILES = *~ *.loT