]> CRI, Mines Paris - PSL - Faustine.git/blobdiff - examples/primitives/Makefile
Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git] / examples / primitives / Makefile
index 7494e85232b2b187107cd0482d7ef817b6332151..a119d2673337e87c19f595b679d5da640f320c86 100644 (file)
@@ -3,11 +3,12 @@ SRC = $(EXAMPLE).dsp
 SAMPLES = 30
 
 FILEOUT = primitives.csv
+ERR_LOG = err_log.txt
 
 all: $(FILEOUT)
 
 $(FILEOUT): $(SRC)
-       faustine -f $(SRC) -l $(SAMPLES) 1> $@ 2> toto.txt
+       faustine -f $(SRC) -l $(SAMPLES) 1> $@ 2> $(ERR_LOG)
 
 clean::
-       rm -f gmon.out $(FILEOUT)
+       rm -f gmon.out $(FILEOUT) $(ERR_LOG)