Skip to content

Commit

Permalink
Install cmi, cmx and mli for CIL features
Browse files Browse the repository at this point in the history
  • Loading branch information
kerneis committed Sep 4, 2013
1 parent ee33a61 commit ddb6713
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Expand Up @@ -84,7 +84,7 @@ ifeq ($(OCAMLNATDYNLINK),yes)
endif
endif

CILLIB_FILES = $(OBJDIR)/src/cil.libfiles
CILLIB_FILES = $(OBJDIR)/src/cil.libfiles $(addsuffix .libfiles,$(CIL_PLUGINS))
CILDOC_INDEX = $(OBJDIR)/cil.docdir/index.html
CILLY_EXE_BIN = $(patsubst $(OBJDIR)/src/main.%,bin/$(CILLY).%,$(CILLY_EXE_FILES))

Expand Down
3 changes: 2 additions & 1 deletion myocamlbuild.ml
Expand Up @@ -13,7 +13,8 @@ let find_modules builder mllib =
let build_result = builder dependencies in
let built_files = List.filter_opt
(function Good file -> Some (!Options.build_dir/file) | Bad _ -> None) build_result in
String.concat " " built_files
(* add a trailing space to ease concatenation of .libfiles *)
(String.concat " " built_files) ^ " "
;;

let cil_version =
Expand Down

0 comments on commit ddb6713

Please sign in to comment.