diff options
author | Rob Savoye | 2010-10-21 13:17:11 -0600 |
---|---|---|
committer | Eric Blossom | 2010-11-10 12:10:46 -0800 |
commit | 32a71023bf7350167fdd4f3797d384d47cafd71f (patch) | |
tree | 2900fd40dde110a1f2eb8ee21705c61c29ba3500 /gr-audio-alsa/src/Makefile.am | |
parent | 4f67bf0a435f9eb62d66c6b2b19a096cbde412d7 (diff) | |
download | gnuradio-32a71023bf7350167fdd4f3797d384d47cafd71f.tar.gz gnuradio-32a71023bf7350167fdd4f3797d384d47cafd71f.tar.bz2 gnuradio-32a71023bf7350167fdd4f3797d384d47cafd71f.zip |
add python/*.cc to SOURCES so dependencies work properly.
Diffstat (limited to 'gr-audio-alsa/src/Makefile.am')
-rw-r--r-- | gr-audio-alsa/src/Makefile.am | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gr-audio-alsa/src/Makefile.am b/gr-audio-alsa/src/Makefile.am index ed92cc197..fac75b89d 100644 --- a/gr-audio-alsa/src/Makefile.am +++ b/gr-audio-alsa/src/Makefile.am @@ -34,6 +34,11 @@ noinst_HEADERS = \ noinst_PYTHON = \ qa_alsa.py +if GUILE +noinst_GUILE = \ + qa_alsa.scm +endif + AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) $(WITH_INCLUDES) ################################### @@ -44,7 +49,8 @@ lib_LTLIBRARIES = libgnuradio-audio-alsa.la libgnuradio_audio_alsa_la_SOURCES = \ audio_alsa_sink.cc \ audio_alsa_source.cc \ - gri_alsa.cc + gri_alsa.cc \ + python/audio_alsa.cc libgnuradio_audio_alsa_la_LIBADD = \ $(GNURADIO_CORE_LA) \ @@ -79,4 +85,5 @@ BUILT_SOURCES = $(swig_built_sources) # Do not distribute the output of SWIG no_dist_files = $(swig_built_sources) -endif
\ No newline at end of file + +endif |