Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git] / examples / sinwave / Makefile
index 4a495a4..7c08a75 100644 (file)
@@ -1,7 +1,13 @@
-all: clean sin
+SRC = sin.dsp
 
-sin: sin.dsp
-       faustine -d $<
+BASENAME = $(SRC:.dsp=)
+FORMAT = wav
+WAVOUT = $(BASENAME).$(FORMAT)
+
+all: $(WAVOUT)
+
+$(WAVOUT): $(SRC)
+       faustine -f $< > sin.wav
 
 clean::
-       rm -f gmon.out output*
+       rm -f gmon.out $(WAVOUT) *~