projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Stdin, stdout and stderr updated, tested.
[Faustine.git]
/
examples
/
primitives
/
Makefile
1
EXAMPLE
=
primitives
2
SRC
= $(
EXAMPLE
)
.dsp
3
SAMPLES
=
30
4
5
FILEOUT
=
primitives.csv
6
ERR_LOG
=
err_log.txt
7
8
all
: $(
FILEOUT
)
9
10
$(
FILEOUT
): $(
SRC
)
11
faustine
-
f
$(
SRC
) -
l
$(
SAMPLES
)
1
> $
@
2
> $(
ERR_LOG
)
12
13
clean
::
14
rm
-
f gmon.out
$(
FILEOUT
) $(
ERR_LOG
)