Browse Source

install.ml fix

Simon Krajewski 13 years ago
parent
commit
f948e7d39f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/install.ml

+ 1 - 1
doc/install.ml

@@ -102,7 +102,7 @@ let compile_libs() =
 
 	(* NEKO *)
 	Sys.chdir "neko";
-	let files = "-I .. nast.ml nxml.ml binast.ml" in
+	let files = "-I .. nast.ml nxml.ml binast.ml nbytecode.ml ncompile.ml" in
 	if bytecode then command ("ocamlc -a -o neko.cma " ^ files);
 	if native then command ("ocamlopt -a -o neko.cmxa " ^ files);
 	Sys.chdir "..";