1 # Faustine interpreter Makefile.
3 ########################## User's variables #####################
5 # The Caml sources (including camlyacc and camllex source files)
7 SOURCES
= types.ml parser.mly lexer.mll aux.ml basic.ml symbol.ml value.ml signal.ml beam.ml process.ml faustio.ml preprocess.ml main.ml preprocess_stubs.
cpp
9 # The executable file to generate
12 # Path to ocaml include header files
13 OCAML_INCLUDE_PATH
:= $(subst bin
,lib
,$(shell which ocaml
))
15 # Path to sndfile library
16 SNDFILE_PATH
:= lib
/src
/libsndfile-ocaml
19 FAUST_PATH
= preprocessor
/faust-0.9
.47mr3
21 # Path to preprocessor library
22 PREPROCESSOR_PATH
= $(FAUST_PATH
)/compiler
24 # Path to preprocessor header files
25 PREPROCESSOR_INCLUDE_PATH
= $(PREPROCESSOR_PATH
)/headers
27 # Path to the interpretor documentation
28 OCAML_DOC_PATH
= ..
/documentation
30 ########################## Advanced user's variables #####################
33 # You may fix here the path to access the Caml compiler on your machine
34 # You may also have to add various -I options.
43 # The list of Caml libraries needed by the program
45 # LIBS=$(WITHGRAPHICS) $(WITHUNIX) $(WITHSTR) $(WITHNUMS) $(WITHTHREADS)\
48 LIBS
= $(WITHSNDFILE
) $(WITHUNIX
) $(WITHSTR
)
50 # Should be set to -INCLUDE if you use any of the libraries above
51 # or if any C code have to be linked with your program
52 # (irrelevant for ocamlopt)
56 INCLUDE
= -I
$(SNDFILE_PATH
)
57 SNDFILE_STUB
:= $(SNDFILE_PATH
)/sndfile_stub.o
59 # Default setting of the WITH* variables. Should be changed if your
60 # local libraries are not found by the compiler.
61 #WITHGRAPHICS =graphics.cma -cclib -lgraphics -cclib -L/usr/X11R6/lib -cclib -lX11
63 #WITHUNIX =unix.cma -cclib -lunix
65 #WITHSTR =str.cma -cclib -lstr
67 #WITHNUMS =nums.cma -cclib -lnums
69 #WITHTHREADS =threads.cma -cclib -lthreads
71 #WITHDBM =dbm.cma -cclib -lmldbm -cclib -lndbm
75 WITHSNDFILE
= sndfile.cma
82 # The list of options for each compiler
83 CAMLC_OPTIONS
= $(GPP_CALL
) $(INCLUDE
) $(LIBS
)
85 CAMLOPT_OPTIONS
= -p
$(GPP_CALL
) $(INCLUDE
) $(LIBS
:.cma
=.cmxa
)
87 CAMLDOC_OPTIONS
= -d
$(OCAML_DOC_PATH
) -html
$(INCLUDE
)
89 CC_OPTIONS
= -c
-I
$(PREPROCESSOR_INCLUDE_PATH
) -I
$(OCAML_INCLUDE_PATH
)
91 ################ End of user's variables #####################
94 ##############################################################
95 ################ This part should be generic
96 ################ Nothing to set up or fix here
97 ##############################################################
99 all:: .depend.input .depend preprocessor
$(EXEC
)
101 opt
: .depend.input .depend preprocessor
$(EXEC
).opt
105 #ocamlc -INCLUDE other options graphics.cma other files -cclib -lgraphics -cclib -lX11
106 #ocamlc -thread -INCLUDE other options threads.cma other files -cclib -lthreads
107 #ocamlc -INCLUDE other options str.cma other files -cclib -lstr
108 #ocamlc -INCLUDE other options nums.cma other files -cclib -lnums
109 #ocamlc -INCLUDE other options unix.cma other files -cclib -lunix
110 #ocamlc -INCLUDE other options dbm.cma other files -cclib -lmldbm -cclib -lndbm
112 SMLIY
= $(SOURCES
:.mly
=.ml
)
113 SMLIYL
= $(SMLIY
:.mll
=.ml
)
114 SMLYL
= $(filter %.ml
, $(SMLIYL
))
115 OBJS
= $(SMLYL
:.ml
=.cmo
)
116 OPTOBJS
= $(OBJS
:.cmo
=.cmx
)
118 CSOURCES
= $(filter %.
cpp, $(SOURCES
))
119 COBJS
= $(CSOURCES
:.
cpp=.o
)
120 CLIBS
= $(PREPROCESSOR_PATH
)/preprocess.a
122 PARSER_MLY
= $(filter %.mly
, $(SOURCES
))
123 LEXER_MLL
= $(filter %.mll
, $(SOURCES
))
124 MIDDLE_ML
= $(PARSER_MLY
:.mly
=.ml
) $(LEXER_MLL
:.mll
=.ml
)
127 @echo
"Compiling preprocessor..."
128 cd
$(FAUST_PATH
) && $(MAKE
)
130 $(EXEC
): $(OBJS
) $(COBJS
) $(CLIBS
)
131 @echo
"Compiling $(EXEC)..."
133 $(CAMLC
) $(CAMLC_OPTIONS
) -o
$(EXEC
) $(OBJS
) $(COBJS
) $(CLIBS
)
135 $(EXEC
).opt
: $(OPTOBJS
) $(COBJS
) $(CLIBS
)
136 @echo
"Compiling optimized $(EXEC)..."
138 $(CAMLOPT
) $(CAMLOPT_OPTIONS
) -o
$(EXEC
) $(OPTOBJS
) $(COBJS
) $(CLIBS
)
140 document
: $(SMLYL
) $(OBJS
)
141 @echo
"Compiling documentation..."
142 $(CAMLDOC
) $(CAMLDOC_OPTIONS
) $(SMLYL
)
145 $(CAMLC
) $(INCLUDE
) -c
$<
148 $(CAMLOPT
) $(INCLUDE
) -c
$<
150 preprocess.cmo
: preprocess.ml
151 $(CAMLC
) $(GPP_CALL
) -c
$<
153 preprocess.cmx
: preprocess.ml
154 $(CAMLOPT
) $(GPP_CALL
) -c
$<
156 preprocess_stubs.o
: preprocess_stubs.
cpp
157 $(CC
) $(CC_OPTIONS
) $<
159 faustio.cmo
: faustio.ml
160 $(CAMLC
) $(INCLUDE
) $(LIBS
) -c
$<
162 faustio.cmx
: faustio.ml
163 $(CAMLOPT
) $(INCLUDE
) $(LIBS
:.cma
=.cmxa
) -c
$<
165 .SUFFIXES
: .ml .mli .cmo .cmi .cmx .mll .mly
205 rm -f
*.cm
[iox
] *~ .
*~
#*#
206 rm -f
$(MIDDLE_ML
) *.o
*.mli .depend
*
211 .depend.input
: Makefile
212 @echo
-n
'--Checking Ocaml input files: '
213 @
(ls
$(SMLIY
) $(SMLIY
:.ml
=.mli
) 2>/dev
/null || true
) \
215 @diff .depend.new .depend.input
2>/dev
/null
1>/dev
/null
&& \
216 (echo
'unchanged'; rm -f .depend.new
) || \
217 (echo
'changed'; mv .depend.new .depend.input
)
221 .depend
:: $(SMLIY
) .depend.input
222 @echo
'--Re-building dependencies'
223 $(CAMLDEP
) $(SMLIY
) $(SMLIY
:.ml
=.mli
) > .depend