1 ########################## User's variables #####################
3 # The Caml sources (including camlyacc and camllex source files)
5 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
7 # The executable file to generate
11 # Path to ocaml include header files
12 export OCAML_INCLUDE_PATH
14 # Path to sndfile library
15 #SNDFILE_PATH = /home/wang/Desktop/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
)
58 # Default setting of the WITH* variables. Should be changed if your
59 # local libraries are not found by the compiler.
60 #WITHGRAPHICS =graphics.cma -cclib -lgraphics -cclib -L/usr/X11R6/lib -cclib -lX11
62 #WITHUNIX =unix.cma -cclib -lunix
64 #WITHSTR =str.cma -cclib -lstr
66 #WITHNUMS =nums.cma -cclib -lnums
68 #WITHTHREADS =threads.cma -cclib -lthreads
70 #WITHDBM =dbm.cma -cclib -lmldbm -cclib -lndbm
74 WITHSNDFILE
= sndfile.cma
81 # The list of options for each compiler
82 CAMLC_OPTIONS
= $(GPP_CALL
) $(INCLUDE
) $(LIBS
)
84 CAMLOPT_OPTIONS
= -p
$(GPP_CALL
) $(INCLUDE
) $(LIBS
:.cma
=.cmxa
)
86 CAMLDOC_OPTIONS
= -d
$(OCAML_DOC_PATH
) -html
$(INCLUDE
)
87 CC_OPTIONS
= -c
-I
$(PREPROCESSOR_INCLUDE_PATH
) -I
$(OCAML_INCLUDE_PATH
)
89 ################ End of user's variables #####################
92 ##############################################################
93 ################ This part should be generic
94 ################ Nothing to set up or fix here
95 ##############################################################
97 all:: .depend.input .depend preprocessor
$(EXEC
)
99 opt
: .depend.input .depend preprocessor
$(EXEC
).opt
103 #ocamlc -INCLUDE other options graphics.cma other files -cclib -lgraphics -cclib -lX11
104 #ocamlc -thread -INCLUDE other options threads.cma other files -cclib -lthreads
105 #ocamlc -INCLUDE other options str.cma other files -cclib -lstr
106 #ocamlc -INCLUDE other options nums.cma other files -cclib -lnums
107 #ocamlc -INCLUDE other options unix.cma other files -cclib -lunix
108 #ocamlc -INCLUDE other options dbm.cma other files -cclib -lmldbm -cclib -lndbm
110 SMLIY
= $(SOURCES
:.mly
=.ml
)
111 SMLIYL
= $(SMLIY
:.mll
=.ml
)
112 SMLYL
= $(filter %.ml
, $(SMLIYL
))
113 OBJS
= $(SMLYL
:.ml
=.cmo
)
114 OPTOBJS
= $(OBJS
:.cmo
=.cmx
)
116 CSOURCES
= $(filter %.
cpp, $(SOURCES
))
117 COBJS
= $(CSOURCES
:.
cpp=.o
)
118 CLIBS
= $(PREPROCESSOR_PATH
)/preprocess.a
120 PARSER_MLY
= $(filter %.mly
, $(SOURCES
))
121 LEXER_MLL
= $(filter %.mll
, $(SOURCES
))
122 MIDDLE_ML
= $(PARSER_MLY
:.mly
=.ml
) $(LEXER_MLL
:.mll
=.ml
)
125 echo
"Compling preprocessor..."
126 cd
$(FAUST_PATH
) && $(MAKE
)
128 $(EXEC
): $(OBJS
) $(COBJS
) $(CLIBS
)
129 $(CAMLC
) $(CAMLC_OPTIONS
) -o
$(EXEC
) $(OBJS
) $(COBJS
) $(CLIBS
)
131 $(EXEC
).opt
: $(OPTOBJS
) $(COBJS
) $(CLIBS
)
132 $(CAMLOPT
) $(CAMLOPT_OPTIONS
) -o
$(EXEC
) $(OPTOBJS
) $(COBJS
) $(CLIBS
)
134 document
: $(SMLYL
) $(OBJS
)
135 $(CAMLDOC
) $(CAMLDOC_OPTIONS
) $(SMLYL
)
138 $(CAMLC
) $(INCLUDE
) -c
$<
141 $(CAMLOPT
) $(INCLUDE
) -c
$<
143 preprocess.cmo
: preprocess.ml
144 $(CAMLC
) $(GPP_CALL
) -c
$<
146 preprocess.cmx
: preprocess.ml
147 $(CAMLOPT
) $(GPP_CALL
) -c
$<
149 preprocess_stubs.o
: preprocess_stubs.
cpp
150 $(CC
) $(CC_OPTIONS
) $<
152 faustio.cmo
: faustio.ml
153 $(CAMLC
) $(INCLUDE
) $(LIBS
) -c
$<
155 faustio.cmx
: faustio.ml
156 $(CAMLOPT
) $(INCLUDE
) $(LIBS
:.cma
=.cmxa
) -c
$<
158 .SUFFIXES
: .ml .mli .cmo .cmi .cmx .mll .mly
198 rm -f
*.cm
[iox
] *~ .
*~
#*#
199 rm -f
$(MIDDLE_ML
) *.o
*.mli .depend
*
204 .depend.input
: Makefile
205 @echo
-n
'--Checking Ocaml input files: '
206 @
(ls
$(SMLIY
) $(SMLIY
:.ml
=.mli
) 2>/dev
/null || true
) \
208 @diff .depend.new .depend.input
2>/dev
/null
1>/dev
/null
&& \
209 (echo
'unchanged'; rm -f .depend.new
) || \
210 (echo
'changed'; mv .depend.new .depend.input
)
214 .depend
:: $(SMLIY
) .depend.input
215 @echo
'--Re-building dependencies'
216 $(CAMLDEP
) $(SMLIY
) $(SMLIY
:.ml
=.mli
) > .depend