Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio/docs)
Kludge Summary of gnuradio/docs/howto-write-a-block
| Total Kludges |
3 |
| Total Subdirs |
0 |
All Directories within gnuradio/docs/howto-write-a-block
All Files within gnuradio/docs/howto-write-a-block
Kludge Snippets in gnuradio/docs/howto-write-a-block
gnuradio/docs/howto-write-a-block/howto_1.i
| Category |
Magic |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
14 /*
15 * First arg is the package prefix.
16 * Second arg is the name of the class minus the prefix.
17 *
18 * This does some behind-the-scenes magic so we can
19 * access howto_square_ff from python as howto.square_ff
20 */
21 GR_SWIG_BLOCK_MAGIC(howto,square_ff);
22
gnuradio/docs/howto-write-a-block/src_lib_Makefile_1.am
| Category |
Magic |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
14 # These are the source files that go into the shared library
15 _howto_la_SOURCES = \
16 howto_square_ff.cc
17
18 # magic flags
19 _howto_la_LDFLAGS = -module -avoid-version
20
21 # These headers get installed in ${prefix}/include/gnuradio
22 grinclude_HEADERS = \
gnuradio/docs/howto-write-a-block/src_lib_Makefile_2.am
| Category |
Magic |
| Committer |
jcorgan |
| Commit ID |
5d69a524f81f234b3fbc41d49ba18d6f6886baba |
62 _howto_la_SOURCES = \
63 howto.cc \
64 howto_square_ff.cc
65
66 # magic flags
67 _howto_la_LDFLAGS = -module -avoid-version
68
69 # link the library against some comon swig runtime code and the
70 # c++ standard library