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

diff --git a/examples/fft/Makefile b/examples/fft/Makefile
index 8194124..cbe38a6 100644
--- a/examples/fft/Makefile
+++ b/examples/fft/Makefile
@@ -4,8 +4,8 @@ FORMAT = csv
 CSVOUT = $(BASENAME)1.$(FORMAT)
 IMGOUT = $(SRC:.dsp=.png)
 
-SINS = four_sins.dsp
-WAV_BASENAME = $(SINS:.dsp=)
+SINSUM = sinsum.dsp
+WAV_BASENAME = $(SINSUM:.dsp=)
 WAV_FORMAT = wav
 WAVIN = $(WAV_BASENAME)1.$(WAV_FORMAT)
 
@@ -21,13 +21,13 @@ $(IMGOUT): $(CSVOUT)
 	octave -qf img_write.m
 
 $(CSVOUT): $(SRC) $(WAVIN)
-	faustine -d $(SRC) -i $(WAVIN) --oformat $(FORMAT) --obasename $(BASENAME)
+	faustine -f $(SRC) -i $(WAVIN) --oformat $(FORMAT) --obasename $(BASENAME)
 
 $(WAVIN): $(SINS) $(INPUT1) $(INPUT2) $(INPUT3) $(INPUT4)
-	faustine -d $(SINS) -i $(INPUT1) -i $(INPUT2) -i $(INPUT3) -i $(INPUT4) --oformat $(WAV_FORMAT) --obasename $(WAV_BASENAME)
+	faustine -f $(SINSUM) -i $(INPUT1) -i $(INPUT2) -i $(INPUT3) -i $(INPUT4) --oformat $(WAV_FORMAT) --obasename $(WAV_BASENAME)
 
 clean::
-	rm -f gmon.out output*
+	rm -f gmon.out $(CSVOUT) $(IMGOUT) $(WAVIN) *~