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)