From 99d27b7be002e2ef4fde2f09e341584f1968bb48 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 17 Feb 2006 17:42:04 +0000 Subject: [PATCH] add Makefile for bench-pitch add Makefile for bench-pitch --- configure.ac | 1 + python/test/bench/pitch/Makefile.am | 13 +++++++++++++ python/{ => test/bench/pitch}/bench-pitch | 0 3 files changed, 14 insertions(+) create mode 100644 python/test/bench/pitch/Makefile.am rename python/{ => test/bench/pitch}/bench-pitch (100%) diff --git a/configure.ac b/configure.ac index 2cce6463..e266e8b8 100644 --- a/configure.ac +++ b/configure.ac @@ -230,6 +230,7 @@ AC_OUTPUT([ plugins/wavesurfer/Makefile plugins/puredata/Makefile python/test/bench/onset/Makefile + python/test/bench/pitch/Makefile doc/Makefile ]) diff --git a/python/test/bench/pitch/Makefile.am b/python/test/bench/pitch/Makefile.am new file mode 100644 index 00000000..cbd40350 --- /dev/null +++ b/python/test/bench/pitch/Makefile.am @@ -0,0 +1,13 @@ +export BASEDIR=../../../.. +export PYTHONPATH=$(BASEDIR)/python +export LD_LIBRARY_PATH=$(BASEDIR)/src/.libs:$(BASEDIR)/ext/.libs + +SOURCE = \ + /archives/samples/pitch/isolated + +test-aubiopitch: $(patsubst %, %.aubiopitch, $(SOURCE)) + +%.aubiopitch: % + rm -f `basename $<`.aubiocut + ./bench-pitch $< #| tee `basename $<`.aubiocut + #diff `basename $<`.aubiocut.ref `basename $<`.aubiocut diff --git a/python/bench-pitch b/python/test/bench/pitch/bench-pitch similarity index 100% rename from python/bench-pitch rename to python/test/bench/pitch/bench-pitch -- 2.11.0