X-Git-Url: https://svn.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/912dbfbf1eb4809f28e4e3a8bdfe76c47e018259..f3caf3d551b4ba1cd98d55678f0fd8085522669f:/examples/fft/Makefile

diff --git a/examples/fft/Makefile b/examples/fft/Makefile
index cbe38a6..67d69cc 100644
--- a/examples/fft/Makefile
+++ b/examples/fft/Makefile
@@ -8,12 +8,7 @@ SINSUM = sinsum.dsp
 WAV_BASENAME = $(SINSUM:.dsp=)
 WAV_FORMAT = wav
 WAVIN = $(WAV_BASENAME)1.$(WAV_FORMAT)
-
-INPUT1 = sin_1378Hz_0.005_ampli_128samples.wav
-INPUT2 = sin_2067Hz_0.005_ampli_128samples.wav
-INPUT3 = sin_16536Hz_0.005_ampli_128samples.wav
-INPUT4 = sin_22000Hz_0.005_ampli_128samples.wav
-
+WAV_LENGTH = 128
 
 all: $(IMGOUT)
 
@@ -21,10 +16,10 @@ $(IMGOUT): $(CSVOUT)
 	octave -qf img_write.m
 
 $(CSVOUT): $(SRC) $(WAVIN)
-	faustine -f $(SRC) -i $(WAVIN) --oformat $(FORMAT) --obasename $(BASENAME)
+	faustine -f $(SRC) -i $(WAVIN) > $@
 
-$(WAVIN): $(SINS) $(INPUT1) $(INPUT2) $(INPUT3) $(INPUT4)
-	faustine -f $(SINSUM) -i $(INPUT1) -i $(INPUT2) -i $(INPUT3) -i $(INPUT4) --oformat $(WAV_FORMAT) --obasename $(WAV_BASENAME)
+$(WAVIN): $(SINS)
+	faustine -f $(SINSUM) -l $(WAV_LENGTH) > $@
 
 clean::
 	rm -f gmon.out $(CSVOUT) $(IMGOUT) $(WAVIN) *~