projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Nested vectors are implemented, including parser and class nstio.
[Faustine.git]
/
examples
/
sinwave
/
Makefile
1
SRC
=
sin.dsp
2
3
BASENAME
= $(
SRC
:
.dsp
=)
4
FORMAT
=
wav
5
WAVOUT
= $(
BASENAME
)
.
$(
FORMAT
)
6
7
all
: $(
WAVOUT
)
8
9
$(
WAVOUT
): $(
SRC
)
10
faustine
-
f
$< >
sin.wav
11
12
clean
::
13
rm
-
f gmon.out
$(
WAVOUT
) *
~