projects
/
Faustine.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix the preprocessor compiling bug in interpretor/Makefile.
[Faustine.git]
/
interpretor
/
Makefile
diff --git
a/interpretor/Makefile
b/interpretor/Makefile
index
39ec26e
..
8576eda
100644
(file)
--- a/
interpretor/Makefile
+++ b/
interpretor/Makefile
@@
-16,7
+16,7
@@
export OCAML_INCLUDE_PATH
export SNDFILE_PATH
# Path to Faust.mr2
export SNDFILE_PATH
# Path to Faust.mr2
-FAUST_PATH = faust-0.9.47mr3
+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++"
@@
-119,15
+121,15
@@
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))
-
-$(EXEC): $(OBJS) $(COBJS)
+$(EXEC): $(OBJS) $(COBJS) $(CLIBS)
$(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)
$(CAMLOPT) $(CAMLOPT_OPTIONS) -o $(EXEC) $(OPTOBJS) $(COBJS) $(CLIBS)
$(CAMLOPT) $(CAMLOPT_OPTIONS) -o $(EXEC) $(OPTOBJS) $(COBJS) $(CLIBS)
+$(CLIBS):
+ @(cd $(FAUST_PATH) && $(MAKE))
+
document: $(SMLYL) $(OBJS)
$(CAMLDOC) $(CAMLDOC_OPTIONS) $(SMLYL)
document: $(SMLYL) $(OBJS)
$(CAMLDOC) $(CAMLDOC_OPTIONS) $(SMLYL)