diff options
author | Tom Rondeau | 2011-12-04 11:10:13 -0500 |
---|---|---|
committer | Tom Rondeau | 2011-12-04 11:10:13 -0500 |
commit | fe2e6f8054ed8c6a19fe893553a0d05ce855179e (patch) | |
tree | bdce8a051d53a33872479233dfe6171d8763732f /gnuradio-core/src/lib | |
parent | 2f48e2a60e76072e5436dde860cd602c3882ce5c (diff) | |
download | gnuradio-fe2e6f8054ed8c6a19fe893553a0d05ce855179e.tar.gz gnuradio-fe2e6f8054ed8c6a19fe893553a0d05ce855179e.tar.bz2 gnuradio-fe2e6f8054ed8c6a19fe893553a0d05ce855179e.zip |
docs: better install of swig docs .i files since we actually have a variable to take care of it already.
Diffstat (limited to 'gnuradio-core/src/lib')
-rw-r--r-- | gnuradio-core/src/lib/swig/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnuradio-core/src/lib/swig/Makefile.am b/gnuradio-core/src/lib/swig/Makefile.am index 0a3234dd6..9509dba32 100644 --- a/gnuradio-core/src/lib/swig/Makefile.am +++ b/gnuradio-core/src/lib/swig/Makefile.am @@ -52,17 +52,18 @@ TOP_SWIG_DOC_IFILES = \ BUILT_SOURCES += \ $(TOP_SWIG_DOC_IFILES) +EXTRA_DIST += \ + $(TOP_SWIG_DOC_IFILES) + $(TOP_SWIG_DOC_IFILES): `echo "" > $@` -install-data-local: - cp -p $(TOP_SWIG_DOC_IFILES) $(swigincludedir) - # SWIG headers get installed in ${prefix}/include/gnuradio/swig swiginclude_HEADERS = \ gnuradio.i \ gr_swig_block_magic.i \ - gr_shared_ptr.i + gr_shared_ptr.i \ + $(TOP_SWIG_DOC_IFILES) # SWIG headers that get installed in ${prefix}/include/gnuradio/swig/... nobase_swiginclude_HEADERS = \ |