Add .cmti files

This commit is contained in:
John Whitington 2019-09-15 17:29:23 +01:00
parent 358a1eb6aa
commit c9b969a385
1 changed files with 5 additions and 4 deletions

View File

@ -7,18 +7,19 @@ RESULT = cpdf
ANNOTATE = true ANNOTATE = true
PACKS = camlpdf PACKS = camlpdf
OCAMLNCFLAGS = -g -bin-annot -safe-string -w -3 -annot OCAMLFLAGS = -bin-annot
OCAMLBCFLAGS = -g -bin-annot -safe-string -w -3 -annot OCAMLNCFLAGS = -g -safe-string -w -3
OCAMLBCFLAGS = -g -safe-string -w -3
OCAMLLDFLAGS = -g OCAMLLDFLAGS = -g
all : native-code native-code-library byte-code-library top htdoc all : native-code native-code-library byte-code-library top htdoc
clean :: clean ::
rm -rf doc foo foo2 out.pdf out2.pdf *.cmt rm -rf doc foo foo2 out.pdf out2.pdf *.cmt *.cmti
LIBINSTALL_FILES = cpdf.a cpdf.cma cpdf.cmxa \ LIBINSTALL_FILES = cpdf.a cpdf.cma cpdf.cmxa \
$(foreach x,$(MODS),$x.mli) $(foreach x,$(MODS),$x.cmi) \ $(foreach x,$(MODS),$x.mli) $(foreach x,$(MODS),$x.cmi) \
$(foreach x,$(MODS),$x.cmx) $(foreach x,$(MODS),$x.cmt) $(foreach x,$(MODS),$x.cmx) $(foreach x,$(MODS),$x.cmti)
install : libinstall install : libinstall