X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/91130bc31ab7163870b104407781db50a6f84980..84ed86493294699dc378a6df6f323e7cd9d26721:/examples/sinwave/Makefile diff --git a/examples/sinwave/Makefile b/examples/sinwave/Makefile index 4a495a4..064b7c8 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 -f $< --obasename $(BASENAME) --oformat $(FORMAT) clean:: - rm -f gmon.out output* + rm -f gmon.out $(BASENAME)*