diff options
author | Rob Savoye | 2010-10-21 12:13:48 -0600 |
---|---|---|
committer | Eric Blossom | 2010-11-10 12:10:46 -0800 |
commit | cf8f2a00c886b7c6980f7d1e3eac25eb37a12d3a (patch) | |
tree | 487a34d34ac6525b406df329217518939759d52f /gnuradio-core/src/lib/swig | |
parent | 75aed9281e0f918fe11a3c040e6b46387dd676c5 (diff) | |
download | gnuradio-cf8f2a00c886b7c6980f7d1e3eac25eb37a12d3a.tar.gz gnuradio-cf8f2a00c886b7c6980f7d1e3eac25eb37a12d3a.tar.bz2 gnuradio-cf8f2a00c886b7c6980f7d1e3eac25eb37a12d3a.zip |
move new suffix rules to common Makefile so everything can use them.
Diffstat (limited to 'gnuradio-core/src/lib/swig')
-rw-r--r-- | gnuradio-core/src/lib/swig/Makefile.am | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gnuradio-core/src/lib/swig/Makefile.am b/gnuradio-core/src/lib/swig/Makefile.am index 21bfe6761..5f5a12eb2 100644 --- a/gnuradio-core/src/lib/swig/Makefile.am +++ b/gnuradio-core/src/lib/swig/Makefile.am @@ -116,21 +116,3 @@ no_dist_files = $(swig_built_sources) # or even with -outdir guile in SWIG_GUILE_ARGS, swig keeps putting a # gnuradio_swig_py_*_wrap.cxx in the source directory. -## SWIG suffixes for automake to know about -SUFFIXES = .i .scm .pyvi - -if GUILE -.i.scm: - @echo "Compile .i to .scm" - @test -d "guile" || $(mkinstalldirs) "guile" - $(SWIG) $(STD_SWIG_GUILE_ARGS) $($*_swig_args) \ - -module $* -o guile/$*.cc $< -# -MD -MF guile/$(DEPDIR)/$*.Std -endif - -# Compile a .i file to what python needs -.i.py: - @echo "Compile .i to .py" - @test -d "python" || $(mkinstalldirs) "python" - $(SWIG) $(STD_SWIG_PYTHON_ARGS) $($*_swig_args) \ - -module $* -o python/$*.cc -oh python/$*.h $< |