From 68caa9452f820c05a54f418564476d433cb91c25 Mon Sep 17 00:00:00 2001 From: Malcolm Slaney Date: Thu, 12 Oct 2023 22:03:42 +0000 Subject: [PATCH] Enhancing Makefile to build speedy submodule too. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 89a2a63..5e99ad1 100644 --- a/Makefile +++ b/Makefile @@ -138,3 +138,13 @@ clean: check: ./sonic -s 2.0 ./samples/talking.wav ./test.wav + + +libspeedy.so: + cd speedy; make libspeedy.so SONIC_DIR=.. FFTW_DIR=../../fftw + +speedy_wave: libsonic_internal.so + cd speedy; make speedy_wave SONIC_DIR=.. FFTW_DIR=../../fftw + # You will probably also need to set the LDPATH. For example + # export LD_LIBRARY_PATH=/usr/local/lib:../kissfft:speedy:. +