#5812: compile read_cmt.opt (about 10x faster than read_cmt to generate .annot files).
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13067 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
961982c7e0
commit
49f50409cd
BIN
boot/ocamlc
BIN
boot/ocamlc
Binary file not shown.
|
@ -28,7 +28,7 @@ all: ocamldep ocamlprof ocamlcp ocamloptp ocamlmktop ocamlmklib dumpobj \
|
|||
|
||||
.PHONY: all
|
||||
|
||||
opt.opt: ocamldep.opt
|
||||
opt.opt: ocamldep.opt read_cmt.opt
|
||||
.PHONY: opt.opt
|
||||
|
||||
# The dependency generator
|
||||
|
@ -234,8 +234,11 @@ READ_CMT= \
|
|||
read_cmt: $(READ_CMT)
|
||||
$(CAMLC) $(LINKFLAGS) -o read_cmt $(READ_CMT)
|
||||
|
||||
read_cmt.opt: $(READ_CMT:.cmo=.cmx)
|
||||
$(CAMLOPT) $(LINKFLAGS) -o read_cmt.opt $(READ_CMT:.cmo=.cmx)
|
||||
|
||||
clean::
|
||||
rm -f read_cmt
|
||||
rm -f read_cmt read_cmt.opt
|
||||
|
||||
beforedepend::
|
||||
|
||||
|
|
Loading…
Reference in New Issue