@@ -16,48 +16,55 @@ include Makefile.shared
16
16
17
17
# For users who don't read the INSTALL file
18
18
defaultentry:
19
- @echo "Please refer to the installation instructions in file README.win32.adoc."
19
+ @echo "Please refer to the instructions in file README.win32.adoc."
20
20
21
21
FLEXDLL_SUBMODULE_PRESENT:=$(wildcard flexdll/Makefile)
22
- BOOT_FLEXLINK_CMD=$(if $(FLEXDLL_SUBMODULE_PRESENT),FLEXLINK_CMD="../boot/ocamlrun ../flexdll/flexlink.exe")
23
- CAMLOPT:=$(if $(FLEXDLL_SUBMODULE_PRESENT),OCAML_FLEXLINK="boot/ocamlrun flexdll/flexlink.exe") $(CAMLOPT)
22
+ ifeq "$(FLEXDLL_SUBMODULE_PRESENT)" ""
23
+ BOOT_FLEXLINK_CMD=
24
+ else
25
+ BOOT_FLEXLINK_CMD=FLEXLINK_CMD="../boot/ocamlrun ../flexdll/flexlink.exe"
26
+ CAMLOPT:=OCAML_FLEXLINK="boot/ocamlrun flexdll/flexlink.exe" $(CAMLOPT)
27
+ endif
24
28
25
29
# FlexDLL sources missing error messages
26
30
# Different git mechanism displayed depending on whether this source tree came
27
31
# from a git clone or a source tarball.
28
32
29
- # Displayed in all cases
30
- flexdll-common-err:
31
- @echo In order to bootstrap FlexDLL, you need to place the sources in flexdll
33
+ flexdll/Makefile:
34
+ @echo In order to bootstrap FlexDLL, you need to place the sources in
35
+ @echo flexdll.
32
36
@echo This can either be done by downloading a source tarball from
33
37
@echo \ http://alain.frisch.fr/flexdll.html
34
-
35
- flexdll/Makefile: $(if $(wildcard flexdll/Makefile),,$(if $(wildcard .git),flexdll-common-err,flexdll-repo))
36
- @echo or by checking out the flexdll submodule with
37
- @echo \ git submodule update --init
38
- @false
39
-
40
- flexdll-repo: flexdll-common-err
41
- @echo or by cloning the git repository
42
- @echo \ git clone https://github.com/alainfrisch/flexdll.git
43
- @echo
38
+ @if [ -d .git ]; then \
39
+ echo or by checking out the flexdll submodule with; \
40
+ echo \ git submodule update --init; \
41
+ else \
42
+ echo or by cloning the git repository; \
43
+ echo \ git clone https://github.com/alainfrisch/flexdll.git; \
44
+ fi
44
45
@false
45
46
46
47
# Bootstrapping FlexDLL - leaves a bytecode image of flexlink.exe in flexdll/
47
48
flexdll: flexdll/Makefile
48
- cd byterun ; $(MAKEREC) BOOTSTRAPPING_FLEXLINK=yes ocamlrun$(EXE)
49
+ cd byterun && $(MAKEREC) BOOTSTRAPPING_FLEXLINK=yes ocamlrun$(EXE)
49
50
cp byterun/ocamlrun.exe boot/ocamlrun.exe
50
- cd stdlib ; $(MAKEREC) COMPILER=../boot/ocamlc stdlib.cma std_exit.cmo
51
- cd stdlib ; cp stdlib.cma std_exit.cmo *.cmi ../boot
52
- cd flexdll ; $(MAKECMD) MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) CHAINS=$(FLEXDLL_CHAIN) NATDYNLINK=false OCAMLOPT="../boot/ocamlrun ../boot/ocamlc -I ../boot" flexlink.exe support
53
- cd byterun ; $(MAKEREC) clean
51
+ cd stdlib && $(MAKEREC) COMPILER=../boot/ocamlc stdlib.cma std_exit.cmo
52
+ cd stdlib && cp stdlib.cma std_exit.cmo *.cmi ../boot
53
+ cd flexdll && \
54
+ $(MAKECMD) MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) \
55
+ CHAINS=$(FLEXDLL_CHAIN) NATDYNLINK=false \
56
+ OCAMLOPT="../boot/ocamlrun ../boot/ocamlc -I ../boot" \
57
+ flexlink.exe support
58
+ cd byterun && $(MAKEREC) clean
54
59
$(MAKEREC) partialclean
55
60
56
61
flexlink.opt:
57
- cd flexdll ; \
58
- mv flexlink.exe flexlink ; \
59
- $(MAKECMD) OCAML_FLEXLINK="../boot/ocamlrun ./flexlink" MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) OCAMLOPT="../ocamlopt.opt -I ../stdlib" flexlink.exe ; \
60
- mv flexlink.exe flexlink.opt ; \
62
+ cd flexdll && \
63
+ mv flexlink.exe flexlink && \
64
+ $(MAKECMD) OCAML_FLEXLINK="../boot/ocamlrun ./flexlink" MSVC_DETECT=0 \
65
+ TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) \
66
+ OCAMLOPT="../ocamlopt.opt -I ../stdlib" flexlink.exe && \
67
+ mv flexlink.exe flexlink.opt && \
61
68
mv flexlink flexlink.exe
62
69
63
70
# Recompile the system using the bootstrap compiler
@@ -150,7 +157,7 @@ compare:
150
157
&& $(CAMLRUN) tools/cmpbyt boot/ocamldep tools/ocamldep; \
151
158
then echo "Fixpoint reached, bootstrap succeeded."; \
152
159
else echo "Fixpoint not reached, try one more bootstrapping cycle."; \
153
- fi
160
+ fi
154
161
155
162
# Remove old bootstrap compilers
156
163
cleanboot:
@@ -229,28 +236,36 @@ installbyt:
229
236
230
237
install-flexdll:
231
238
# The $(if ...) installs the correct .manifest file for MSVC and MSVC64
232
- # (GNU make doesn't have ifeq as a function, hence slightly convoluted use of filter-out)
233
- cp flexdll/flexlink.exe $(if $(filter-out mingw,$(TOOLCHAIN)),flexdll/default$(filter-out _i386,_$(ARCH)).manifest) $(INSTALL_BINDIR)/
239
+ # (GNU make doesn't have ifeq as a function, hence slightly convoluted use of
240
+ # filter-out)
241
+ cp flexdll/flexlink.exe \
242
+ $(if $(filter-out mingw,$(TOOLCHAIN)),\
243
+ flexdll/default$(filter-out _i386,_$(ARCH)).manifest) \
244
+ $(INSTALL_BINDIR)/
234
245
cp flexdll/flexdll_*.$(O) $(INSTALL_LIBDIR)
235
246
236
247
# Installation of the native-code compiler
237
248
installopt:
238
- cd asmrun ; $(MAKEREC) install
249
+ cd asmrun && $(MAKEREC) install
239
250
cp ocamlopt "$(INSTALL_BINDIR)/ocamlopt.exe"
240
- cd stdlib ; $(MAKEREC) installopt
251
+ cd stdlib && $(MAKEREC) installopt
241
252
cp middle_end/*.cmi middle_end/*.cmt middle_end/*.cmti \
242
253
"$(INSTALL_COMPLIBDIR)"
243
254
cp middle_end/base_types/*.cmi middle_end/base_types/*.cmt \
244
255
middle_end/base_types/*.cmti "$(INSTALL_COMPLIBDIR)"
245
256
cp asmcomp/*.cmi asmcomp/*.cmt asmcomp/*.cmti "$(INSTALL_COMPLIBDIR)"
246
257
cp compilerlibs/ocamloptcomp.cma $(OPTSTART) "$(INSTALL_COMPLIBDIR)"
247
- if test -n "$(WITH_OCAMLDOC)"; then (cd ocamldoc; $(MAKEREC) installopt); fi
258
+ if test -n "$(WITH_OCAMLDOC)"; then \
259
+ (cd ocamldoc && $(MAKEREC) installopt); \
260
+ fi
248
261
for i in $(OTHERLIBRARIES); do \
249
262
$(MAKEREC) -C otherlibs/$$i installopt || exit $$?; \
250
263
done
251
264
if test -f ocamlopt.opt ; then $(MAKEREC) installoptopt; fi
252
265
cd tools; $(MAKEREC) installopt
253
- if test -f ocamlopt.opt -a -f flexdll/flexlink.opt ; then cp -f flexdll/flexlink.opt $(INSTALL_BINDIR)/flexlink.exe ; fi
266
+ if test -f ocamlopt.opt -a -f flexdll/flexlink.opt ; then \
267
+ cp -f flexdll/flexlink.opt $(INSTALL_BINDIR)/flexlink.exe ; \
268
+ fi
254
269
255
270
installoptopt:
256
271
cp ocamlc.opt "$(INSTALL_BINDIR)/ocamlc.opt$(EXE)"
@@ -441,7 +456,8 @@ ocamlopt.opt: compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa \
441
456
partialclean::
442
457
rm -f ocamlopt.opt
443
458
444
- $(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) $(ASMCOMP:.cmo=.cmx): ocamlopt
459
+ $(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) \
460
+ $(ASMCOMP:.cmo=.cmx): ocamlopt
445
461
446
462
# The numeric opcodes
447
463
0 commit comments