Examples' Makefiles are completed and tested.
[Faustine.git] / examples / primitives / Makefile
1 EXAMPLE = primitives
2 SRC = $(EXAMPLE).dsp
3 SAMPLES = 30
4
5 BASENAME = output
6 FORMAT = csv
7 CSVOUT = $(BASENAME)1.$(FORMAT)
8
9 all: $(CSVOUT)
10
11 $(CSVOUT): $(SRC)
12 faustine -d $(SRC) -t $(SAMPLES) --oformat $(FORMAT) --obasename $(BASENAME)
13
14 clean::
15 rm -f gmon.out output*