On continue le compte rendu …

Petit fix du Makefile
This commit is contained in:
2021-06-09 20:31:47 +02:00
parent 5bcae43999
commit 6aed4a4c0d
3 changed files with 108 additions and 25 deletions
+5 -1
View File
@@ -8,6 +8,10 @@ ascii: $(shell find textes/ -type f -iname "*.txt" ! -iname "*.ascii.txt" | sed
%.cmx: %.ml
ocamlopt -c $<
images.cmo: images.ml images.mli
ocamlc -c images.mli
ocamlc -c images.ml
Code.cmo: Code.ml Code.mli Math.cmo
ocamlc -c "Code.mli"
ocamlc -c "Code.ml"
@@ -21,7 +25,7 @@ tipe: tipe.cmx
%.txt.test: %.ascii.txt tipe
./tipe $<
ocshell:
ocshell: images.cmo Math.cmo Code.cmo
rlwrap ocaml graphics.cma images.cmo Math.cmo Code.cmo
runall: $(shell find textes/ -type f -iname "*.txt" ! -iname "*.ascii.txt" | sed "s/\.txt/\.txt\.test/")