projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git]
/
examples
/
primitives
/
Makefile
1
EXAMPLE
=
primitives
2
SRC
= $(
EXAMPLE
)
.dsp
3
SAMPLES
=
30
4
5
BASENAME
=
output
6
FORMAT
=
csv
7
CSVOUT
= $(
BASENAME
)
1
.
$(
FORMAT
)
8
9
all
: $(
CSVOUT
)
10
11
$(
CSVOUT
): $(
SRC
)
12
faustine
-
d
$(
SRC
) -
t
$(
SAMPLES
) --
oformat
$(
FORMAT
) --
obasename
$(
BASENAME
)
13
14
clean
::
15
rm
-
f gmon.out output
*