27 lines
616 B
Makefile
27 lines
616 B
Makefile
|
|
%.ascii.txt: %.txt
|
|
iconv -f utf-8 -t ascii//TRANSLIT $< -o $@
|
|
|
|
ascii: $(shell find textes/ -type f -iname "*.txt" ! -iname "*.ascii.txt" | sed "s/\.txt/\.ascii\.txt/")
|
|
|
|
%.cmx: %.ml
|
|
ocamlopt -c $<
|
|
|
|
Code.cmo: Code.ml Code.mli Math.cmo
|
|
ocamlc -c "Code.mli"
|
|
ocamlc -c "Code.ml"
|
|
Math.cmo: Math.ml Math.mli
|
|
ocamlc -c Math.mli
|
|
ocamlc -c Math.ml
|
|
|
|
tipe: tipe.cmx
|
|
ocamlopt -o tipe str.cmxa tipe.cmx
|
|
|
|
%.txt.test: %.ascii.txt tipe
|
|
./tipe $<
|
|
|
|
runall: $(shell find textes/ -type f -iname "*.txt" ! -iname "*.ascii.txt" | sed "s/\.txt/\.txt\.test/")
|
|
|
|
clean:
|
|
rm -rf tipe *.cmx *.cmi *.cmo *.o textes/*.ascii.txt *.ntl.ml
|