X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/912dbfbf1eb4809f28e4e3a8bdfe76c47e018259..02c1ef905d2101df872ccccccb2e4c7c0a508571:/examples/sinwave/Makefile diff --git a/examples/sinwave/Makefile b/examples/sinwave/Makefile index 064b7c8..7c08a75 100644 --- a/examples/sinwave/Makefile +++ b/examples/sinwave/Makefile @@ -1,13 +1,13 @@ SRC = sin.dsp -BASENAME = output +BASENAME = $(SRC:.dsp=) FORMAT = wav -WAVOUT = $(BASENAME)1.$(FORMAT) +WAVOUT = $(BASENAME).$(FORMAT) all: $(WAVOUT) $(WAVOUT): $(SRC) - faustine -f $< --obasename $(BASENAME) --oformat $(FORMAT) + faustine -f $< > sin.wav clean:: - rm -f gmon.out $(BASENAME)* + rm -f gmon.out $(WAVOUT) *~