projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
New Makefile for libsndfile-ocaml library integration; Makefiles chain modified.
[Faustine.git]
/
interpretor
/
Makefile
diff --git
a/interpretor/Makefile
b/interpretor/Makefile
index
23b74e4
..
4a5f84f
100644
(file)
--- a/
interpretor/Makefile
+++ b/
interpretor/Makefile
@@
-1,3
+1,5
@@
+# Faustine interpreter Makefile.
+
########################## User's variables #####################
#
# The Caml sources (including camlyacc and camllex source files)
########################## User's variables #####################
#
# The Caml sources (including camlyacc and camllex source files)
@@
-5,18
+7,16
@@
SOURCES = types.ml parser.mly lexer.mll basic.ml symbol.ml aux.ml value.ml signal.ml beam.ml process.ml faustio.ml preprocess.ml main.ml preprocess_stubs.cpp
# The executable file to generate
SOURCES = types.ml parser.mly lexer.mll basic.ml symbol.ml aux.ml value.ml signal.ml beam.ml process.ml faustio.ml preprocess.ml main.ml preprocess_stubs.cpp
# The executable file to generate
-
EXEC = faustine
# Path to ocaml include header files
EXEC = faustine
# Path to ocaml include header files
-export OCAML_INCLUDE_PATH
+OCAML_INCLUDE_PATH := $(subst bin,lib,$(shell which ocaml))
# Path to sndfile library
# Path to sndfile library
-#SNDFILE_PATH = /home/wang/Desktop/libsndfile-ocaml
-export SNDFILE_PATH
+SNDFILE_PATH := lib/libsndfile
-# Path to Faust.mr
2
-FAUST_PATH = faust-0.9.47mr3
+# Path to Faust.mr
3
+FAUST_PATH =
preprocessor/
faust-0.9.47mr3
# Path to preprocessor library
PREPROCESSOR_PATH = $(FAUST_PATH)/compiler
# Path to preprocessor library
PREPROCESSOR_PATH = $(FAUST_PATH)/compiler
@@
-45,7
+45,7
@@
CC = g++
# LIBS=$(WITHGRAPHICS) $(WITHUNIX) $(WITHSTR) $(WITHNUMS) $(WITHTHREADS)\
# $(WITHDBM)
# LIBS=$(WITHGRAPHICS) $(WITHUNIX) $(WITHSTR) $(WITHNUMS) $(WITHTHREADS)\
# $(WITHDBM)
-LIBS = $(WITHSNDFILE) $(WITHUNIX)
+LIBS = $(WITHSNDFILE) $(WITHUNIX)
$(WITHSTR)
# Should be set to -INCLUDE if you use any of the libraries above
# or if any C code have to be linked with your program
# Should be set to -INCLUDE if you use any of the libraries above
# or if any C code have to be linked with your program
@@
-73,6
+73,8
@@
WITHUNIX =unix.cma
WITHSNDFILE = sndfile.cma
WITHSNDFILE = sndfile.cma
+WITHSTR = str.cma
+
# c++ wrap options
GPP_CALL = -cc "g++"
# c++ wrap options
GPP_CALL = -cc "g++"
@@
-82,6
+84,7
@@
CAMLC_OPTIONS = $(GPP_CALL) $(INCLUDE) $(LIBS)
CAMLOPT_OPTIONS = -p $(GPP_CALL) $(INCLUDE) $(LIBS:.cma=.cmxa)
CAMLDOC_OPTIONS = -d $(OCAML_DOC_PATH) -html $(INCLUDE)
CAMLOPT_OPTIONS = -p $(GPP_CALL) $(INCLUDE) $(LIBS:.cma=.cmxa)
CAMLDOC_OPTIONS = -d $(OCAML_DOC_PATH) -html $(INCLUDE)
+
CC_OPTIONS = -c -I$(PREPROCESSOR_INCLUDE_PATH) -I$(OCAML_INCLUDE_PATH)
################ End of user's variables #####################
CC_OPTIONS = -c -I$(PREPROCESSOR_INCLUDE_PATH) -I$(OCAML_INCLUDE_PATH)
################ End of user's variables #####################
@@
-119,16
+122,20
@@
PARSER_MLY = $(filter %.mly, $(SOURCES))
LEXER_MLL = $(filter %.mll, $(SOURCES))
MIDDLE_ML = $(PARSER_MLY:.mly=.ml) $(LEXER_MLL:.mll=.ml)
LEXER_MLL = $(filter %.mll, $(SOURCES))
MIDDLE_ML = $(PARSER_MLY:.mly=.ml) $(LEXER_MLL:.mll=.ml)
-preprocessor:
- @(cd $(FAUST_PATH) && $(MAKE))
+preprocessor::
+ @echo "Compiling preprocessor..."
+ cd $(FAUST_PATH) && $(MAKE)
-$(EXEC): $(OBJS) $(COBJS)
+$(EXEC): $(OBJS) $(COBJS) $(CLIBS)
+ @echo "Compiling $(EXEC)..."
$(CAMLC) $(CAMLC_OPTIONS) -o $(EXEC) $(OBJS) $(COBJS) $(CLIBS)
$(CAMLC) $(CAMLC_OPTIONS) -o $(EXEC) $(OBJS) $(COBJS) $(CLIBS)
-$(EXEC).opt: $(OPTOBJS) $(COBJS)
+$(EXEC).opt: $(OPTOBJS) $(COBJS) $(CLIBS)
+ @echo "Compiling optimized $(EXEC)..."
$(CAMLOPT) $(CAMLOPT_OPTIONS) -o $(EXEC) $(OPTOBJS) $(COBJS) $(CLIBS)
document: $(SMLYL) $(OBJS)
$(CAMLOPT) $(CAMLOPT_OPTIONS) -o $(EXEC) $(OPTOBJS) $(COBJS) $(CLIBS)
document: $(SMLYL) $(OBJS)
+ @echo "Compiling documentation..."
$(CAMLDOC) $(CAMLDOC_OPTIONS) $(SMLYL)
main.cmo: main.ml
$(CAMLDOC) $(CAMLDOC_OPTIONS) $(SMLYL)
main.cmo: main.ml
@@
-146,6
+153,12
@@
preprocess.cmx: preprocess.ml
preprocess_stubs.o: preprocess_stubs.cpp
$(CC) $(CC_OPTIONS) $<
preprocess_stubs.o: preprocess_stubs.cpp
$(CC) $(CC_OPTIONS) $<
+faustio.cmo: faustio.ml
+ $(CAMLC) $(INCLUDE) $(LIBS) -c $<
+
+faustio.cmx: faustio.ml
+ $(CAMLOPT) $(INCLUDE) $(LIBS:.cma=.cmxa) -c $<
+
.SUFFIXES: .ml .mli .cmo .cmi .cmx .mll .mly
.ml.cmo:
.SUFFIXES: .ml .mli .cmo .cmi .cmx .mll .mly
.ml.cmo: