Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git] / examples / sinwave / Makefile
index 4a495a4..c6d2ec9 100644 (file)
@@ -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)*