projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Examples' Makefiles are completed and tested.
[Faustine.git]
/
examples
/
sinwave
/
Makefile
diff --git
a/examples/sinwave/Makefile
b/examples/sinwave/Makefile
index
4a495a4
..
c6d2ec9
100644
(file)
--- 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::
clean::
- rm -f gmon.out
output
*
+ rm -f gmon.out
$(BASENAME)
*