diff options
author | Tom Rondeau | 2010-11-16 21:40:48 -0800 |
---|---|---|
committer | Tom Rondeau | 2010-11-16 21:40:48 -0800 |
commit | a41e9987f2c9544f38cea7e367bfc81fafea38cc (patch) | |
tree | a963f20b41ed99e8286fa362199eb125a94a06fe /gnuradio-core/src/lib/io/Makefile.am | |
parent | 9d6c7400ba39a9d5e3ddab9da294b8b6303d9509 (diff) | |
download | gnuradio-a41e9987f2c9544f38cea7e367bfc81fafea38cc.tar.gz gnuradio-a41e9987f2c9544f38cea7e367bfc81fafea38cc.tar.bz2 gnuradio-a41e9987f2c9544f38cea7e367bfc81fafea38cc.zip |
New file sink to handle tagged bursts of data.
Diffstat (limited to 'gnuradio-core/src/lib/io/Makefile.am')
-rw-r--r-- | gnuradio-core/src/lib/io/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnuradio-core/src/lib/io/Makefile.am b/gnuradio-core/src/lib/io/Makefile.am index c52554645..8ce740afd 100644 --- a/gnuradio-core/src/lib/io/Makefile.am +++ b/gnuradio-core/src/lib/io/Makefile.am @@ -56,7 +56,8 @@ libio_la_SOURCES = \ gr_udp_source.cc \ gr_wavfile_sink.cc \ gr_wavfile_source.cc \ - gri_wavfile.cc + gri_wavfile.cc \ + gr_tagged_file_sink.cc grinclude_HEADERS = \ gr_file_sink.h \ @@ -89,7 +90,8 @@ grinclude_HEADERS = \ gr_udp_source.h \ gr_wavfile_source.h \ gr_wavfile_sink.h \ - gri_wavfile.h + gri_wavfile.h \ + gr_tagged_file_sink.h if PYTHON swiginclude_HEADERS = \ @@ -111,5 +113,6 @@ swiginclude_HEADERS = \ gr_udp_sink.i \ gr_udp_source.i \ gr_wavfile_source.i \ - gr_wavfile_sink.i + gr_wavfile_sink.i \ + gr_tagged_file_sink.i endif |