748378e4c94611aef2ee683ad64cd328daa8e227
1 # Faustine top-level Makefile.
5 PREPROCESSOR_DIR
= $(SRC_DIR
)/preprocessor
/faust-0.9
.47mr3
6 EXAMPLES_DIR
= examples
7 SINWAVE_DIR
= $(EXAMPLES_DIR
)/sinwave
11 prefix := $(DESTDIR
)$(PREFIX
)
12 lib
:= $(wildcard lib
/*.
*)
17 $(MAKE
) -C
$(SRC_DIR
) opt
# using ocamlopt compiler (optimized)
19 .PHONY
: clean mrproper
test help
install uninstall
22 @echo
"make or make all : compiler the faustine interpreter"
23 @echo
"make clean : remove all object files"
24 @echo
"make doc : generate the documentation using ocamldoc (TODO)"
25 @echo
"make install : install the interpreter and the library files in $(prefix)/bin $(prefix)/lib/faustine"
26 @echo
"make uninstall : undo what install did"
27 @echo
"make dist : make a tar.gz file ready for distribution (TODO)"
30 @
($(MAKE
) -C
$(SRC_DIR
) clean)
34 @
($(MAKE
) -C
$(SRC_DIR
) mrproper
)
35 @
($(MAKE
) -C
$(PREPROCESSOR_DIR
) clean)
36 @
($(MAKE
) -C
$(EXAMPLES_DIR
) clean)
39 @
$(MAKE
) -C
$(SINWAVE_DIR
)
40 @ls
-l
$(SINWAVE_DIR
)/output1.wav
42 @echo
" You might want to check the output file with either:"
43 @echo
"audacity $(SINWAVE_DIR)/output1.wav"
44 @echo
"open $(SINWAVE_DIR)/output1.wav"
45 @echo
"octave -q --eval 'plot(wavread(\"$(SINWAVE_DIR)/output1.wav\")); pause'"
48 @
($(MAKE
) -C
$(EXAMPLES_DIR
))
51 mkdir
-p
$(prefix)/lib
/faustine
/
52 mkdir
-p
$(prefix)/bin
/
53 install $(SRC_DIR
)/faustine
$(prefix)/bin
/
54 install -m
0644 $(lib
) $(prefix)/lib
/faustine
/
57 rm -rf
$(prefix)/lib
/faustine
/
58 rm -f
$(prefix)/bin
/faustine