diff options
author | jcorgan | 2006-09-28 06:28:26 +0000 |
---|---|---|
committer | jcorgan | 2006-09-28 06:28:26 +0000 |
commit | eceb00eba3d3076e6de1118844df45473b095a35 (patch) | |
tree | f94490007e3024ccc46491b4e564dff82d0fb5d2 /gr-error-correcting-codes/src | |
parent | 32b724459bee94d645fcf4b85b4c27c18b3600ec (diff) | |
download | gnuradio-eceb00eba3d3076e6de1118844df45473b095a35.tar.gz gnuradio-eceb00eba3d3076e6de1118844df45473b095a35.tar.bz2 gnuradio-eceb00eba3d3076e6de1118844df45473b095a35.zip |
Fixes ticket:76.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3678 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-error-correcting-codes/src')
-rw-r--r-- | gr-error-correcting-codes/src/lib/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gr-error-correcting-codes/src/lib/Makefile.am b/gr-error-correcting-codes/src/lib/Makefile.am index 10b102896..14af7e515 100644 --- a/gr-error-correcting-codes/src/lib/Makefile.am +++ b/gr-error-correcting-codes/src/lib/Makefile.am @@ -92,6 +92,11 @@ swiginclude_HEADERS = $(LOCAL_IFILES) ecc.cc ecc.py: $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc.i $(ALL_IFILES) $(SWIG) $(SWIGCPPPYTHONARGS) -module ecc -o ecc.cc $(top_srcdir)/gr-error-correcting-codes/src/lib/ecc.i +# Don't distribute output of swig +dist-hook: + @for file in $(BUILT_SOURCES); do echo $(RM) $(distdir)/$$file; done + @for file in $(BUILT_SOURCES); do $(RM) $(distdir)/$$file; done + MOSTLYCLEANFILES = $(BUILT_SOURCES) *.pyc *.loT *~ CONFIG_CLEAN_FILES = *.in |