1 DSP = $(wildcard *.dsp)
2 TEX = $(wildcard *-mdoc/tex/*.tex)
3 PDF = $(wildcard *-mdoc/pdf/*.pdf)
8 .PHONY: all clean compile copypdfs copyall install mathdoc help
15 sudo $(MAKE) -C .. install
16 sudo $(MAKE) -C ../tools/faust2appls install
23 cp $(wildcard *-mdoc/pdf/*.pdf) allmathpdfs/
29 cp $(wildcard *.dsp) allmathdsps/
30 cp $(wildcard *-mdoc/tex/*.tex) allmathtexs/
31 cp $(wildcard *-mdoc/pdf/*.pdf) allmathpdfs/
34 @echo "make or make all : compile math documentation of all examples, then copy resulting pdf files into \"allmathpdfs\" directory."
35 @echo "make clean : remove \"*-mdoc\" and \"allmath*\" directories."
36 @echo "make compile : compile the faust compiler."
37 @echo "make install : install the faust compiler and faust2appls scripts."
38 @echo "make mathdoc : generate math documentation of all examples (with faust2mathdoc)."
39 @echo "make copypdfs : copy pdf files into \"allmathpdfs\" directory."
40 @echo "make copyall : copy dsp, pdf, and tex files into \"allmathdsps\", \"allmathpdfs\", and \"allmathtexs\" directories."
41 @echo "make total : clean, compile faust, install faust and faust2appls, compile math docs, and copy files."
47 total : clean compile install mathdoc copyall