projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git]
/
examples
/
sinwave
/
Makefile
diff --git
a/examples/sinwave/Makefile
b/examples/sinwave/Makefile
index
cdd957c
..
7c08a75
100644
(file)
--- a/
examples/sinwave/Makefile
+++ b/
examples/sinwave/Makefile
@@
-1,8
+1,8
@@
SRC = sin.dsp
SRC = sin.dsp
-BASENAME =
output
+BASENAME =
$(SRC:.dsp=)
FORMAT = wav
FORMAT = wav
-WAVOUT = $(BASENAME)
1
.$(FORMAT)
+WAVOUT = $(BASENAME).$(FORMAT)
all: $(WAVOUT)
all: $(WAVOUT)
@@
-10,4
+10,4
@@
$(WAVOUT): $(SRC)
faustine -f $< > sin.wav
clean::
faustine -f $< > sin.wav
clean::
- rm -f gmon.out $(
BASENAME)* *.wav
*~
+ rm -f gmon.out $(
WAVOUT)
*~