1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
#
# Copyright 2001,2002,2004,2006 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
#
include $(top_srcdir)/Makefile.common
INCLUDES = $(STD_DEFINES_AND_INCLUDES) $(CPPUNIT_INCLUDES)
#noinst_LTLIBRARIES = libgengen.la libgengen-qa.la
noinst_LTLIBRARIES = libgengen.la
# ----------------------------------------------------------------
# these scripts generate code
CODE_GENERATOR = \
generate_all.py \
generate_common.py \
gr_add_XX.cc.t \
gr_add_XX.h.t \
gr_add_XX.i.t \
gr_add_const_XX.cc.t \
gr_add_const_XX.h.t \
gr_add_const_XX.i.t \
gr_add_vXX.cc.t \
gr_add_vXX.h.t \
gr_add_vXX.i.t \
gr_add_const_vXX.cc.t \
gr_add_const_vXX.h.t \
gr_add_const_vXX.i.t \
gr_chunks_to_symbols_XX.cc.t \
gr_chunks_to_symbols_XX.h.t \
gr_chunks_to_symbols_XX.i.t \
gr_divide_XX.cc.t \
gr_divide_XX.h.t \
gr_divide_XX.i.t \
gr_multiply_XX.cc.t \
gr_multiply_XX.h.t \
gr_multiply_XX.i.t \
gr_multiply_const_XX.cc.t \
gr_multiply_const_XX.h.t \
gr_multiply_const_XX.i.t \
gr_multiply_vXX.cc.t \
gr_multiply_vXX.h.t \
gr_multiply_vXX.i.t \
gr_multiply_const_vXX.cc.t \
gr_multiply_const_vXX.h.t \
gr_multiply_const_vXX.i.t \
gr_mute_XX.cc.t \
gr_mute_XX.h.t \
gr_mute_XX.i.t \
gr_noise_source_X.cc.t \
gr_noise_source_X.h.t \
gr_noise_source_X.i.t \
gr_packed_to_unpacked_XX.cc.t \
gr_packed_to_unpacked_XX.h.t \
gr_packed_to_unpacked_XX.i.t \
gr_sig_source_X.cc.t \
gr_sig_source_X.h.t \
gr_sig_source_X.i.t \
gr_sub_XX.cc.t \
gr_sub_XX.h.t \
gr_sub_XX.i.t \
gr_unpacked_to_packed_XX.cc.t \
gr_unpacked_to_packed_XX.h.t \
gr_unpacked_to_packed_XX.i.t \
gr_vector_source_X.cc.t \
gr_vector_source_X.h.t \
gr_vector_source_X.i.t \
gr_vector_sink_X.cc.t \
gr_vector_sink_X.h.t \
gr_vector_sink_X.i.t
# include $(srcdir)/Makefile.gen
include Makefile.gen
$(GENERATED_H) $(GENERATED_I) $(GENERATED_CC): $(CODE_GENERATOR)
PYTHONPATH=$(top_srcdir)/gnuradio-core/src/python srcdir=$(srcdir) $(srcdir)/generate_all.py
BUILT_SOURCES = $(GENERATED_H) $(GENERATED_I) $(GENERATED_CC)
# ----------------------------------------------------------------
EXTRA_DIST = \
$(CODE_GENERATOR)
libgengen_la_SOURCES = \
$(GENERATED_CC)
#libgengen_qa_la_SOURCES =
grinclude_HEADERS = \
$(GENERATED_H) \
gr_endianness.h \
gr_noise_type.h \
gr_sig_source_waveform.h
noinst_HEADERS =
swiginclude_HEADERS = \
$(GENERATED_I) \
gr_endianness.i \
gengen.i \
gengen_generated.i
CLEANFILES = $(BUILT_SOURCES) *.pyc
|