- Timestamp:
- Jul 22, 2006, 11:48:08 AM (18 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- bd24069
- Parents:
- 4cab19e
- Location:
- examples/tests
- Files:
-
- 18 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/tests/Makefile.am
r4cab19e r4e9101e 1 AM_CFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/ext @LASH_CFLAGS@ 2 AM_LDFLAGS = -L$(top_builddir)/src -L$(top_builddir)/ext -laubioext -laubio @JACK_LIBS@ @LASH_LIBS@ 1 AM_CFLAGS = -I$(top_srcdir)/src 2 AM_LDFLAGS = -L$(top_builddir)/src -laubio @FFTWLIB_LIBS@ 3 4 test_phasevoc_jack_CFLAGS = -I$(top_builddir)/ext @JACK_CFLAGS@ 5 test_phasevoc_jack_LDADD = -laubioext -L$(top_builddir)/ext @JACK_LIBS@ 3 6 4 7 bin_PROGRAMS = \ 5 8 test-fft \ 6 9 test-mfft \ 10 test-hist \ 11 test-scale \ 12 test-sample \ 13 test-window \ 14 test-filter \ 15 test-biquad \ 16 test-resample \ 17 test-peakpick \ 7 18 test-phasevoc \ 8 19 test-phasevoc-jack \ 20 test-onsetdetection \ 21 test-pitchyin \ 22 test-pitchyinfft \ 23 test-pitchschmitt \ 24 test-pitchfcomb \ 25 test-pitchmcomb \ 26 test-pitchdetection \ 27 test-beattracking \ 28 test-onset \ 29 test-tempo \ 9 30 test-tss 31 32 run-tests: $(bin_PROGRAMS) 33 for i in $(bin_PROGRAMS); do echo $$i; time ./$$i 2>&1 > /dev/null; echo $$?; done 34 35 run-valgrind-tests: $(bin_PROGRAMS) 36 for i in $(bin_PROGRAMS); do echo $$i; valgrind .libs/lt-$$i 2>&1 | grep ERROR\ SUMMARY -A4; echo $$?; done
Note: See TracChangeset
for help on using the changeset viewer.