Bug fixed for unix error "readlink /proc/self/fd/0" on MacOS.
[Faustine.git] / examples / primitives / Makefile
1 EXAMPLE = primitives
2 SRC = $(EXAMPLE).dsp
3 SAMPLES = 30
4
5 FILEOUT = primitives.csv
6 ERR_LOG = err_log.txt
7
8 all: $(FILEOUT)
9
10 $(FILEOUT): $(SRC)
11 faustine -f $(SRC) -l $(SAMPLES) 1> $@ 2> $(ERR_LOG)
12
13 clean::
14 rm -f gmon.out $(FILEOUT) $(ERR_LOG)