projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Stdin, stdout and stderr updated, tested.
[Faustine.git]
/
examples
/
primitives
/
Makefile
diff --git
a/examples/primitives/Makefile
b/examples/primitives/Makefile
index
fb73fc3
..
a119d26
100644
(file)
--- a/
examples/primitives/Makefile
+++ b/
examples/primitives/Makefile
@@
-2,14
+2,13
@@
EXAMPLE = primitives
SRC = $(EXAMPLE).dsp
SAMPLES = 30
SRC = $(EXAMPLE).dsp
SAMPLES = 30
-BASENAME = output
-FORMAT = csv
-CSVOUT = $(BASENAME)1.$(FORMAT)
+FILEOUT = primitives.csv
+ERR_LOG = err_log.txt
-all: $(
CSV
OUT)
+all: $(
FILE
OUT)
-$(
CSV
OUT): $(SRC)
- faustine -f $(SRC) -l $(SAMPLES)
--oformat $(FORMAT) --obasename $(BASENAME
)
+$(
FILE
OUT): $(SRC)
+ faustine -f $(SRC) -l $(SAMPLES)
1> $@ 2> $(ERR_LOG
)
clean::
clean::
- rm -f gmon.out
output*
+ rm -f gmon.out
$(FILEOUT) $(ERR_LOG)