This commit is contained in:
2025-09-19 19:54:59 +01:00
commit bc6aee7bb7
5 changed files with 142 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
common_files = parser.ml
extensions = *.cmo *.cmi *.cma *.o *.out *.cmx *.a
lib:
ocamlc -c $(common_files)
ocamlc -a parser.cmo -o parser.cma
clean:
rm -f $(extensions)