diff options
author | Eric Blossom | 2010-11-24 13:49:59 -0800 |
---|---|---|
committer | Eric Blossom | 2010-11-24 13:49:59 -0800 |
commit | 99dc38c8f81fe388b13bf46e3f53cc272765249e (patch) | |
tree | 7b150dcfab7307832042f238057beef0cf222cb4 /gr-gcell | |
parent | 53fb7289b46ee4299a0341d9e02dad74483940b6 (diff) | |
download | gnuradio-99dc38c8f81fe388b13bf46e3f53cc272765249e.tar.gz gnuradio-99dc38c8f81fe388b13bf46e3f53cc272765249e.tar.bz2 gnuradio-99dc38c8f81fe388b13bf46e3f53cc272765249e.zip |
Consistently use TESTS += in conditionals
Diffstat (limited to 'gr-gcell')
-rw-r--r-- | gr-gcell/src/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-gcell/src/Makefile.am b/gr-gcell/src/Makefile.am index 60ec6cc73..3c3ee6973 100644 --- a/gr-gcell/src/Makefile.am +++ b/gr-gcell/src/Makefile.am @@ -20,6 +20,8 @@ include $(top_srcdir)/Makefile.common +TESTS = + SUBDIRS = . examples AM_CPPFLAGS = $(GCELL_INCLUDES) $(STD_DEFINES_AND_INCLUDES) \ @@ -59,7 +61,7 @@ if PYTHON # SWIG stuff # ---------------------------------------------------------------- EXTRA_DIST = run_tests.in -TESTS = run_tests +TESTS += run_tests TOP_SWIG_IFILES = \ gcell.i |