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
/
primitives
/
Makefile
diff --git
a/examples/primitives/Makefile
b/examples/primitives/Makefile
index
80d4dbd
..
b392c2b
100644
(file)
--- a/
examples/primitives/Makefile
+++ b/
examples/primitives/Makefile
@@
-2,10
+2,14
@@
EXAMPLE = primitives
SRC = $(EXAMPLE).dsp
SAMPLES = 30
SRC = $(EXAMPLE).dsp
SAMPLES = 30
-all: clean $(EXAMPLE)
+BASENAME = output
+FORMAT = csv
+CSVOUT = $(BASENAME)1.$(FORMAT)
-$(EXAMPLE): $(SRC)
- faustine -d $(SRC) -t $(SAMPLES) --oformat csv
+all: $(CSVOUT)
+
+$(CSVOUT): $(SRC)
+ faustine -d $(SRC) -t $(SAMPLES) --oformat $(FORMAT) --obasename $(BASENAME)
clean::
rm -f gmon.out output*
clean::
rm -f gmon.out output*