X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/blobdiff_plain/dbded051d69cc5ba556884eb285feba032e09d29..f3caf3d551b4ba1cd98d55678f0fd8085522669f:/examples/primitives/Makefile diff --git a/examples/primitives/Makefile b/examples/primitives/Makefile index 80d4dbd..a119d26 100644 --- a/examples/primitives/Makefile +++ b/examples/primitives/Makefile @@ -2,10 +2,13 @@ EXAMPLE = primitives SRC = $(EXAMPLE).dsp SAMPLES = 30 -all: clean $(EXAMPLE) +FILEOUT = primitives.csv +ERR_LOG = err_log.txt -$(EXAMPLE): $(SRC) - faustine -d $(SRC) -t $(SAMPLES) --oformat csv +all: $(FILEOUT) + +$(FILEOUT): $(SRC) + faustine -f $(SRC) -l $(SAMPLES) 1> $@ 2> $(ERR_LOG) clean:: - rm -f gmon.out output* + rm -f gmon.out $(FILEOUT) $(ERR_LOG)