blob: 4c65ca8ffc600f59315793a24000ad4614bd284d [file] [log] [blame]
Gordon Henriksen7e269ec2007-09-18 12:26:17 +00001##===- tools/ml/Makefile -----------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file was developed by Gordon Henriksen and is distributed under the
6# University of Illinois Open Source License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9#
10# An ocaml library is a unique project type in the context of LLVM, so rules are
11# here rather than in Makefile.rules.
12#
13##===----------------------------------------------------------------------===##
14
15include $(LEVEL)/Makefile.config
16
17# Find the ocaml stdlib root. /usr/local/lib/ocaml is the default when built
18# from source; distros use something like /usr/lib/ocaml/3.10.0.
19ifndef OCAML_LIBDIR
20OCAML_LIBDIR := $(shell $(OCAMLC) -where)
21endif
22
23# CFLAGS needs to be set before Makefile.rules is included. Yes, ocaml puts its
24# includes under its libdir.
25CFLAGS += -I$(OCAML_LIBDIR)
26
27include $(LEVEL)/Makefile.common
28
29# Intentionally ignore PROJ_prefix here. We want the ocaml stdlib. However, the
30# user can override this with OCAML_LIBDIR.
31PROJ_libocamldir := $(DESTDIR)$(OCAML_LIBDIR)
32OcamlDir := $(LibDir)/ocaml
33
34# Info from llvm-config and similar
35ifdef UsedComponents
36UsedLibs = $(shell $(LLVM_CONFIG) --libs $(UsedComponents))
37UsedLibNames = $(shell $(LLVM_CONFIG) --libnames $(UsedComponents))
38endif
39
40# Tools
Gordon Henriksen55e3d502007-09-20 16:47:41 +000041OCAMLCFLAGS += -I $(OcamlDir) -I $(ObjDir)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +000042OCAMLAFLAGS += $(patsubst %,-cclib %, \
43 $(filter-out -L$(LibDir),$(shell $(LLVM_CONFIG) --ldflags)) \
44 $(UsedLibs) -l$(LIBRARYNAME))
45
46Compile.CMI := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) -o)
47Compile.CMO := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) -o)
48Archive.CMA := $(strip $(OCAMLC) -a -custom $(OCAMLAFLAGS) -o)
49
50Compile.CMX := $(strip $(OCAMLOPT) -c $(OCAMLCFLAGS) -o)
51Archive.CMXA := $(strip $(OCAMLOPT) -a $(OCAMLAFLAGS) -o)
52
53# Source files
Gordon Henriksen55e3d502007-09-20 16:47:41 +000054OcamlSources1 := $(sort $(wildcard $(PROJ_SRC_DIR)/*.ml))
55OcamlHeaders1 := $(OcamlSources1:.ml=.mli)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +000056
Gordon Henriksen55e3d502007-09-20 16:47:41 +000057OcamlSources := $(OcamlSources1:$(PROJ_SRC_DIR)/%=$(ObjDir)/%)
58OcamlHeaders := $(OcamlHeaders1:$(PROJ_SRC_DIR)/%=$(ObjDir)/%)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +000059
Gordon Henriksen55e3d502007-09-20 16:47:41 +000060# Intermediate files
61LibraryCMA := $(ObjDir)/$(LIBRARYNAME).cma
62LibraryCMXA := $(ObjDir)/$(LIBRARYNAME).cmxa
63ObjectsCMI := $(OcamlSources:%.ml=%.cmi)
64ObjectsCMO := $(OcamlSources:%.ml=%.cmo)
65ObjectsCMX := $(OcamlSources:%.ml=%.cmx)
66
67# Output files
68# The .cmo files are the only intermediates; all others are to be installed.
69LibraryA := $(OcamlDir)/lib$(LIBRARYNAME).a
70OutputCMA := $(LibraryCMA:$(ObjDir)/%.cma=$(OcamlDir)/%.cma)
71OutputCMXA := $(LibraryCMXA:$(ObjDir)/%.cmxa=$(OcamlDir)/%.cmxa)
72OutputsCMI := $(ObjectsCMI:$(ObjDir)/%.cmi=$(OcamlDir)/%.cmi)
73OutputsCMX := $(ObjectsCMX:$(ObjDir)/%.cmx=$(OcamlDir)/%.cmx)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +000074
75# Installation targets
76DestA := $(PROJ_libocamldir)/lib$(LIBRARYNAME).a
77DestCMA := $(PROJ_libocamldir)/$(LIBRARYNAME).cma
78DestCMXA := $(PROJ_libocamldir)/$(LIBRARYNAME).cmxa
79
80
Gordon Henriksen55e3d502007-09-20 16:47:41 +000081##===- Dependencies -------------------------------------------------------===##
82# Copy the sources into the intermediate directory because older ocamlc doesn't
83# support -o except when linking (outputs are placed next to inputs).
84
85$(ObjDir)/%.mli: $(PROJ_SRC_DIR)/%.mli $(ObjDir)/.dir
86 $(Verb) $(CP) -f $< $@
87
88$(ObjDir)/%.ml: $(PROJ_SRC_DIR)/%.ml $(ObjDir)/.dir
89 $(Verb) $(CP) -f $< $@
90
Gordon Henriksenc2ff95d2007-09-23 13:37:44 +000091$(ObjDir)/$(LIBRARYNAME).ocamldep: $(OcamlSources) $(OcamlHeaders) \
92 $(OcamlDir)/.dir $(ObjDir)/.dir
Gordon Henriksen55e3d502007-09-20 16:47:41 +000093 $(Verb) $(OCAMLDEP) $(OCAMLCFLAGS) $(OcamlSources) $(OcamlHeader) > $@
94
95-include $(ObjDir)/$(LIBRARYNAME).ocamldep
96
97
Gordon Henriksen7e269ec2007-09-18 12:26:17 +000098##===- Build static library from C sources --------------------------------===##
99
100all-local:: $(LibraryA)
101clean-local:: clean-a
102install-local:: install-a
103uninstall-local:: uninstall-a
104
105$(LibraryA): $(ObjectsO) $(OcamlDir)/.dir
106 $(Echo) "Building $(BuildMode) $(notdir $@)"
107 -$(Verb) $(RM) -f $@
108 $(Verb) $(Archive) $@ $(ObjectsO)
109 $(Verb) $(Ranlib) $@
110
111clean-a::
112 -$(Verb) $(RM) -f $(LibraryA)
113
114install-a:: $(LibraryA)
115 $(Echo) "Installing $(BuildMode) $(DestA)"
116 $(Verb) $(MKDIR) $(PROJ_libocamldir)
117 $(Verb) $(LTInstall) $(LibraryA) $(DestA)
118 $(Verb)
119
120uninstall-a::
121 $(Echo) "Uninstalling $(DestA)"
122 -$(Verb) $(RM) -f $(DestA)
123
124
125##===- Build ocaml interfaces (.mli's -> .cmi's) --------------------------===##
126
127all-local:: build-cmis
128clean-local:: clean-cmis
129install-local:: install-cmis
130uninstall-local:: uninstall-cmis
131
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000132build-cmis: $(OutputsCMI)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000133
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000134$(OcamlDir)/%.cmi: $(ObjDir)/%.cmi $(OcamlDir)/.dir
135 $(Verb) $(CP) -f $< $@
136
137$(ObjDir)/%.cmi: $(ObjDir)/%.mli $(ObjDir)/.dir
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000138 $(Echo) "Compiling $(notdir $<) for $(BuildMode) build"
139 $(Verb) $(Compile.CMI) $@ $<
140
141clean-cmis::
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000142 -$(Verb) $(RM) -f $(OutputsCMI)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000143
144# Also install the .mli's (headers) as documentation.
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000145install-cmis: $(OutputsCMI) $(OcamlHeaders)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000146 $(Verb) $(MKDIR) $(PROJ_libocamldir)
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000147 $(Verb) for i in $(OutputsCMI:$(OcamlDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000148 $(EchoCmd) "Installing $(BuildMode) $(PROJ_libocamldir)/$$i"; \
149 $(DataInstall) $(OcamlDir)/$$i "$(PROJ_libocamldir)/$$i"; \
150 done
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000151 $(Verb) for i in $(OcamlHeaders:$(ObjDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000152 $(EchoCmd) "Installing $(BuildMode) $(PROJ_libocamldir)/$$i"; \
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000153 $(DataInstall) $(ObjDir)/$$i "$(PROJ_libocamldir)/$$i"; \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000154 done
155
156uninstall-cmis::
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000157 $(Verb) for i in $(OutputsCMI:$(OcamlDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000158 $(EchoCmd) "Uninstalling $(PROJ_libocamldir)/$$i"; \
159 $(RM) -f "$(PROJ_libocamldir)/$$i"; \
160 done
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000161 $(Verb) for i in $(OcamlHeaders:$(ObjDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000162 $(EchoCmd) "Uninstalling $(PROJ_libocamldir)/$$i"; \
163 $(RM) -f "$(PROJ_libocamldir)/$$i"; \
164 done
165
166
167##===- Build ocaml bytecode archive (.ml's -> .cmo's -> .cma) -------------===##
168
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000169all-local:: $(OutputCMA)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000170clean-local:: clean-cma
171install-local:: install-cma
172uninstall-local:: uninstall-cma
173
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000174$(OutputCMA): $(LibraryCMA) $(OcamlDir)/.dir
175 $(Verb) $(CP) -f $< $@
176
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000177$(LibraryCMA): $(ObjectsCMO) $(OcamlDir)/.dir
178 $(Echo) "Archiving $(notdir $@) for $(BuildMode) build"
179 $(Verb) $(Archive.CMA) $@ $(ObjectsCMO)
180 $(Verb) for i in $(UsedLibNames); do \
181 ln -sf "$(LibDir)/$$i" "$(OcamlDir)/$$i"; \
182 done
183
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000184$(ObjDir)/%.cmo: $(ObjDir)/%.ml
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000185 $(Echo) "Compiling $(notdir $<) for $(BuildMode) build"
186 $(Verb) $(Compile.CMO) $@ $<
187
188clean-cma::
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000189 $(Verb) $(RM) -f $(OutputCMA) $(UsedLibNames:%=$(OcamlDir)/%)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000190
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000191install-cma:: $(OutputCMA)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000192 $(Echo) "Installing $(BuildMode) $(DestCMA)"
193 $(Verb) $(MKDIR) $(PROJ_libocamldir)
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000194 $(Verb) $(DataInstall) $(OutputCMA) "$(DestCMA)"
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000195 $(Verb) for i in $(UsedLibNames); do \
196 $(EchoCmd) "Installing $(BuildMode) $(PROJ_libocamldir)/$$i"; \
197 ln -sf "$(PROJ_libdir)/$$i" "$(PROJ_libocamldir)/$$i"; \
198 done
199
200uninstall-cma::
201 $(Echo) "Uninstalling $(DestCMA)"
202 -$(Verb) $(RM) -f $(DestCMA)
203 $(Verb) for i in $(UsedLibNames); do \
204 $(EchoCmd) "Uninstalling $(PROJ_libocamldir)/$$i"; \
205 $(RM) -f "$(PROJ_libocamldir)/$$i"; \
206 done
207
208
209##===- Build optimized ocaml archive (.ml's -> .cmx's -> .cmxa, .a) -------===##
210
211# The ocamlopt compiler is supported on a set of targets disjoint from LLVM's.
212# If unavailable, 'configure' will not define OCAMLOPT in Makefile.config.
213ifdef OCAMLOPT
214
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000215all-local:: $(OutputCMXA) $(OutputsCMX)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000216clean-local:: clean-cmxa
217install-local:: install-cmxa
218uninstall-local:: uninstall-cmxa
219
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000220$(OutputCMXA): $(LibraryCMXA)
221 $(Verb) $(CP) -f $< $@
222 $(Verb) $(CP) -f $(<:.cmxa=.a) $(@:.cmxa=.a)
223
224$(OcamlDir)/%.cmx: $(ObjDir)/%.cmx
225 $(Verb) $(CP) -f $< $@
226
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000227$(LibraryCMXA): $(ObjectsCMX)
228 $(Echo) "Archiving $(notdir $@) for $(BuildMode) build"
229 $(Verb) $(Archive.CMXA) $@ $(ObjectsCMX)
230 $(Verb) $(RM) -f $(@:.cmxa=.o)
231
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000232$(ObjDir)/%.cmx: $(ObjDir)/%.ml
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000233 $(Echo) "Compiling optimized $(notdir $<) for $(BuildMode) build"
234 $(Verb) $(Compile.CMX) $@ $<
235
236clean-cmxa::
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000237 $(Verb) $(RM) -f $(OutputCMXA) $(OutputCMXA:.cmxa=.o) $(OutputsCMX)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000238
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000239install-cmxa:: $(OutputCMXA) $(OutputsCMX)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000240 $(Verb) $(MKDIR) $(PROJ_libocamldir)
241 $(Echo) "Installing $(BuildMode) $(DestCMXA)"
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000242 $(Verb) $(DataInstall) $(OutputCMXA) $(DestCMXA)
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000243 $(Echo) "Installing $(BuildMode) $(DestCMXA:.cmxa=.a)"
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000244 $(Verb) $(DataInstall) $(OutputCMXA:.cmxa=.a) $(DestCMXA:.cmxa=.a)
245 $(Verb) for i in $(OutputsCMX:$(OcamlDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000246 $(EchoCmd) "Installing $(BuildMode) $(PROJ_libocamldir)/$$i"; \
247 $(DataInstall) $(OcamlDir)/$$i "$(PROJ_libocamldir)/$$i"; \
248 done
249
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000250uninstall-cmxa::
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000251 $(Echo) "Uninstalling $(DestCMXA)"
252 $(Verb) $(RM) -f $(DestCMXA)
253 $(Echo) "Uninstalling $(DestCMXA:.cmxa=.a)"
254 $(Verb) $(RM) -f $(DestCMXA:.cmxa=.a)
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000255 $(Verb) for i in $(OutputsCMX:$(OcamlDir)/%=%); do \
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000256 $(EchoCmd) "Uninstalling $(PROJ_libocamldir)/$$i"; \
257 $(RM) -f $(PROJ_libocamldir)/$$i; \
258 done
259
260endif
261
262
263##===- Debugging gunk -----------------------------------------------------===##
264printvars:: printcamlvars
265
266printcamlvars::
267 $(Echo) "LLVM_CONFIG : " '$(LLVM_CONFIG)'
268 $(Echo) "OCAMLCFLAGS : " '$(OCAMLCFLAGS)'
269 $(Echo) "OCAMLAFLAGS : " '$(OCAMLAFLAGS)'
270 $(Echo) "OCAMLC : " '$(OCAMLC)'
271 $(Echo) "OCAMLOPT : " '$(OCAMLOPT)'
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000272 $(Echo) "OCAMLDEP : " '$(OCAMLDEP)'
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000273 $(Echo) "Compile.CMI : " '$(Compile.CMI)'
274 $(Echo) "Compile.CMO : " '$(Compile.CMO)'
275 $(Echo) "Archive.CMA : " '$(Archive.CMA)'
276 $(Echo) "Compile.CMX : " '$(Compile.CMX)'
277 $(Echo) "Archive.CMXA : " '$(Archive.CMXA)'
278 $(Echo) "CAML_LIBDIR : " '$(CAML_LIBDIR)'
279 $(Echo) "LibraryCMA : " '$(LibraryCMA)'
280 $(Echo) "LibraryCMXA : " '$(LibraryCMXA)'
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000281 $(Echo) "OcamlSources1: " '$(OcamlSources1)'
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000282 $(Echo) "OcamlSources : " '$(OcamlSources)'
Gordon Henriksen55e3d502007-09-20 16:47:41 +0000283 $(Echo) "OcamlHeaders : " '$(OcamlHeaders)'
Gordon Henriksen7e269ec2007-09-18 12:26:17 +0000284 $(Echo) "ObjectsCMI : " '$(ObjectsCMI)'
285 $(Echo) "ObjectsCMO : " '$(ObjectsCMO)'
286 $(Echo) "ObjectsCMX : " '$(ObjectsCMX)'
287 $(Echo) "OCAML_LIBDIR : " '$(OCAML_LIBDIR)'
288 $(Echo) "DestA : " '$(DestA)'
289 $(Echo) "DestCMA : " '$(DestCMA)'
290 $(Echo) "DestCMXA : " '$(DestCMXA)'
291 $(Echo) "UsedLibs : " '$(UsedLibs)'
292 $(Echo) "UsedLibNames : " '$(UsedLibNames)'
293
294.PHONY: printcamlvars build-cmis \
295 clean-a clean-cmis clean-cma clean-cmxa \
296 install-a install-cmis install-cma install-cmxa \
297 uninstall-a uninstall-cmis uninstall-cma uninstall-cmxa