diff options
author | Tom Rondeau | 2011-11-27 14:56:19 -0500 |
---|---|---|
committer | Tom Rondeau | 2011-11-27 14:56:19 -0500 |
commit | 0a21e2584c226496af2aa3b361bed3d6bd91ba41 (patch) | |
tree | 444074fc00018a88f1e9c5938f3c0b63c1e0d8c2 /gnuradio-core/src | |
parent | 7b57dae20bb182561fcda78e5eeec44e44f0a9fb (diff) | |
download | gnuradio-0a21e2584c226496af2aa3b361bed3d6bd91ba41.tar.gz gnuradio-0a21e2584c226496af2aa3b361bed3d6bd91ba41.tar.bz2 gnuradio-0a21e2584c226496af2aa3b361bed3d6bd91ba41.zip |
docs: autotools Makefile.am generates empty swig_docs .i files; builds in autotools and cmake.
The autotools build does not auto-generate the Python documentation for each block like we do with the cmake build, but the empty .i files are required to build things regardless. The swig_doc.py and doxyxml files are distributed with the autotools build in case someone wants to generate this on their own (see README.doxyxml for how to do this).
Only for gnuradio-core and gr-digital currently.
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r-- | gnuradio-core/src/lib/swig/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/swig/Makefile.am b/gnuradio-core/src/lib/swig/Makefile.am index d304a2123..162285017 100644 --- a/gnuradio-core/src/lib/swig/Makefile.am +++ b/gnuradio-core/src/lib/swig/Makefile.am @@ -40,6 +40,20 @@ TOP_SWIG_IFILES = \ gnuradio_core_io.i \ gnuradio_core_hier.i +TOP_SWIG_DOC_IFILES = \ + filter_swig_doc.i \ + general_swig_doc.i \ + gengen_swig_doc.i \ + hier_swig_doc.i \ + io_swig_doc.i \ + runtime_swig_doc.i + + +BUILT_SOURCES = \ + $(TOP_SWIG_DOC_IFILES) + +$(BUILT_SOURCES): + `echo "" > $@` # SWIG headers get installed in ${prefix}/include/gnuradio/swig swiginclude_HEADERS = \ |