EXAMPLE = primitives
SRC = $(EXAMPLE).dsp
SAMPLES = 30

BASENAME = output
FORMAT = csv
CSVOUT = $(BASENAME)1.$(FORMAT)

all: $(CSVOUT)

$(CSVOUT): $(SRC)
	faustine -f $(SRC) -l $(SAMPLES) --oformat $(FORMAT) --obasename $(BASENAME)

clean::
	rm -f gmon.out output*