Taddeus Kroes 12 anni fa
parent
commit
b43f0ac36a
2 ha cambiato i file con 5 aggiunte e 4 eliminazioni
  1. 1 1
      Makefile
  2. 4 3
      README.md

+ 1 - 1
Makefile

@@ -20,7 +20,7 @@ CIVVM := ../bin32/civvm
 CIVCC := ../civicc
 
 DIST_TGT := civicaml.tgz
-DIST_FILES := $(RESULT) $(SOURCES) Makefile OCamlMakefile README.md test
+DIST_FILES := $(RESULT) $(SOURCES) Makefile OCamlMakefile README.md test bin32
 
 .PHONY: myclean check dist
 

+ 4 - 3
README.md

@@ -10,14 +10,15 @@ Documentation
 doc/civicc.index.html.
 
 The coding style adheres to
-[http://wiki.xen.org/wiki/OCaml_Best_Practices_for_Developers#Use_of_open].
+http://wiki.xen.org/wiki/OCaml_Best_Practices_for_Developers#Use_of_open.
+
+The Makefile uses [OCamlMakefile(https://bitbucket.org/mmottl/ocaml-makefile/).
 
 
 Issues & TODO
 -------------
 
-- Documentation for all modules (in ocamldoc format).
 - Typechecking now gives an error when integers are not in the 32-bit range, as
   the reference compiler implements it. However, 64-bit should imo also be
   supported (using Nativeint instead of Int32).
-- Replace VarDec with Var_dec etc?
+- Replace VarDec with Var_dec etc? (to adhere to the coding style)