libsndfile compiling.
[Faustine.git] / interpretor / Makefile
1 ########################## User's variables #####################
2 #
3 # The Caml sources (including camlyacc and camllex source files)
4
5 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
6
7 # The executable file to generate
8
9 EXEC = faustine
10
11 # Path to ocaml include header files
12 export OCAML_INCLUDE_PATH
13
14 # Path to sndfile library
15 #SNDFILE_PATH = /home/wang/Desktop/libsndfile-ocaml
16 export SNDFILE_PATH
17
18 # Path to Faust.mr2
19 FAUST_PATH = preprocessor/faust-0.9.47mr3
20
21 # Path to preprocessor library
22 PREPROCESSOR_PATH = $(FAUST_PATH)/compiler
23
24 # Path to preprocessor header files
25 PREPROCESSOR_INCLUDE_PATH = $(PREPROCESSOR_PATH)/headers
26
27 # Path to the interpretor documentation
28 OCAML_DOC_PATH = ../documentation
29
30 ########################## Advanced user's variables #####################
31 #
32 # The Caml compilers.
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.
35 CAMLC = ocamlc
36 CAMLOPT = ocamlopt
37 CAMLDEP = ocamldep
38 CAMLLEX = ocamllex
39 CAMLYACC = ocamlyacc
40 CAMLDOC = ocamldoc
41 CC = g++
42
43 # The list of Caml libraries needed by the program
44 # For instance:
45 # LIBS=$(WITHGRAPHICS) $(WITHUNIX) $(WITHSTR) $(WITHNUMS) $(WITHTHREADS)\
46 # $(WITHDBM)
47
48 LIBS = $(WITHSNDFILE) $(WITHUNIX) $(WITHSTR)
49
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)
53
54 # INCLUDE=-INCLUDE
55
56 INCLUDE = -I $(SNDFILE_PATH)
57
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
61
62 #WITHUNIX =unix.cma -cclib -lunix
63
64 #WITHSTR =str.cma -cclib -lstr
65
66 #WITHNUMS =nums.cma -cclib -lnums
67
68 #WITHTHREADS =threads.cma -cclib -lthreads
69
70 #WITHDBM =dbm.cma -cclib -lmldbm -cclib -lndbm
71
72 WITHUNIX =unix.cma
73
74 WITHSNDFILE = sndfile.cma
75
76 WITHSTR = str.cma
77
78 # c++ wrap options
79 GPP_CALL = -cc "g++"
80
81 # The list of options for each compiler
82 CAMLC_OPTIONS = $(GPP_CALL) $(INCLUDE) $(LIBS)
83
84 CAMLOPT_OPTIONS = -p $(GPP_CALL) $(INCLUDE) $(LIBS:.cma=.cmxa)
85
86 CAMLDOC_OPTIONS = -d $(OCAML_DOC_PATH) -html $(INCLUDE)
87 CC_OPTIONS = -c -I$(PREPROCESSOR_INCLUDE_PATH) -I$(OCAML_INCLUDE_PATH)
88
89 ################ End of user's variables #####################
90
91
92 ##############################################################
93 ################ This part should be generic
94 ################ Nothing to set up or fix here
95 ##############################################################
96
97 all:: .depend.input .depend preprocessor $(EXEC)
98
99 opt : .depend.input .depend preprocessor $(EXEC).opt
100
101 doc : document
102
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
109
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)
115
116 CSOURCES = $(filter %.cpp, $(SOURCES))
117 COBJS = $(CSOURCES:.cpp=.o)
118 CLIBS = $(PREPROCESSOR_PATH)/preprocess.a
119
120 PARSER_MLY = $(filter %.mly, $(SOURCES))
121 LEXER_MLL = $(filter %.mll, $(SOURCES))
122 MIDDLE_ML = $(PARSER_MLY:.mly=.ml) $(LEXER_MLL:.mll=.ml)
123
124 preprocessor::
125 echo "Compling preprocessor..."
126 cd $(FAUST_PATH) && $(MAKE)
127
128 $(EXEC): $(OBJS) $(COBJS) $(CLIBS)
129 $(CAMLC) $(CAMLC_OPTIONS) -o $(EXEC) $(OBJS) $(COBJS) $(CLIBS)
130
131 $(EXEC).opt: $(OPTOBJS) $(COBJS) $(CLIBS)
132 $(CAMLOPT) $(CAMLOPT_OPTIONS) -o $(EXEC) $(OPTOBJS) $(COBJS) $(CLIBS)
133
134 document: $(SMLYL) $(OBJS)
135 $(CAMLDOC) $(CAMLDOC_OPTIONS) $(SMLYL)
136
137 main.cmo: main.ml
138 $(CAMLC) $(INCLUDE) -c $<
139
140 main.cmx: main.ml
141 $(CAMLOPT) $(INCLUDE) -c $<
142
143 preprocess.cmo: preprocess.ml
144 $(CAMLC) $(GPP_CALL) -c $<
145
146 preprocess.cmx: preprocess.ml
147 $(CAMLOPT) $(GPP_CALL) -c $<
148
149 preprocess_stubs.o: preprocess_stubs.cpp
150 $(CC) $(CC_OPTIONS) $<
151
152 faustio.cmo: faustio.ml
153 $(CAMLC) $(INCLUDE) $(LIBS) -c $<
154
155 faustio.cmx: faustio.ml
156 $(CAMLOPT) $(INCLUDE) $(LIBS:.cma=.cmxa) -c $<
157
158 .SUFFIXES: .ml .mli .cmo .cmi .cmx .mll .mly
159
160 .ml.cmo:
161 $(CAMLC) -c $<
162
163 .mli.cmi:
164 $(CAMLC) -c $<
165
166 .ml.cmx:
167 $(CAMLOPT) -c $<
168
169 .mll.cmo:
170 $(CAMLLEX) $<
171 $(CAMLC) -c $*.ml
172
173 .mll.cmx:
174 $(CAMLLEX) $<
175 $(CAMLOPT) -c $*.ml
176
177 .mly.cmo:
178 $(CAMLYACC) $<
179 $(CAMLC) -c $*.mli
180 $(CAMLC) -c $*.ml
181
182 .mly.cmx:
183 $(CAMLYACC) $<
184 $(CAMLOPT) -c $*.mli
185 $(CAMLOPT) -c $*.ml
186
187 .mly.cmi:
188 $(CAMLYACC) $<
189 $(CAMLC) -c $*.mli
190
191 .mll.ml:
192 $(CAMLLEX) $<
193
194 .mly.ml:
195 $(CAMLYACC) $<
196
197 clean::
198 rm -f *.cm[iox] *~ .*~ #*#
199 rm -f $(MIDDLE_ML) *.o *.mli .depend*
200
201 mrproper: clean
202 rm -f $(EXEC)*
203
204 .depend.input: Makefile
205 @echo -n '--Checking Ocaml input files: '
206 @(ls $(SMLIY) $(SMLIY:.ml=.mli) 2>/dev/null || true) \
207 > .depend.new
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)
211
212 depend: .depend
213
214 .depend:: $(SMLIY) .depend.input
215 @echo '--Re-building dependencies'
216 $(CAMLDEP) $(SMLIY) $(SMLIY:.ml=.mli) > .depend
217
218 include .depend