diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-11-27 14:56:19 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-11-27 14:56:19 -0500 |
commit | 0a21e2584c226496af2aa3b361bed3d6bd91ba41 (patch) | |
tree | 444074fc00018a88f1e9c5938f3c0b63c1e0d8c2 /docs | |
parent | 7b57dae20bb182561fcda78e5eeec44e44f0a9fb (diff) |
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 'docs')
-rw-r--r-- | docs/doxygen/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/doxygen/Makefile.am b/docs/doxygen/Makefile.am index d6f6c24ae1..de76126c43 100644 --- a/docs/doxygen/Makefile.am +++ b/docs/doxygen/Makefile.am @@ -21,14 +21,14 @@ include $(top_srcdir)/Makefile.common -SUBDIRS = other xml-swig doxyxml +SUBDIRS = other xml-swig dist_gr_doc_DATA = \ $(top_srcdir)/README \ $(top_srcdir)/README.hacking \ README.doxyxml -EXTRA_DIST = swig_doc.py +EXTRA_DIST = doxyxml swig_doc.py all-local: prep @generate_docs@ doc: docs # alias |