X-Git-Url: https://svn.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/91130bc31ab7163870b104407781db50a6f84980..456ab1eb0f387a99d0bfdc5bb3c42c20d645b331:/examples/sinwave/Makefile

diff --git a/examples/sinwave/Makefile b/examples/sinwave/Makefile
index 4a495a4..c6d2ec9 100644
--- a/examples/sinwave/Makefile
+++ b/examples/sinwave/Makefile
@@ -1,7 +1,13 @@
-all: clean sin
+SRC = sin.dsp
 
-sin: sin.dsp
-	faustine -d $<
+BASENAME = output
+FORMAT = wav
+WAVOUT = $(BASENAME)1.$(FORMAT)
+
+all: $(WAVOUT)
+
+$(WAVOUT): $(SRC)
+	faustine -d $< --obasename $(BASENAME) --oformat $(FORMAT)
 
 clean::
-	rm -f gmon.out output*
+	rm -f gmon.out $(BASENAME)*