Makefile added

This commit is contained in:
2025-09-17 22:46:21 +01:00
parent 98a5d859a0
commit b71f367f80
2 changed files with 10 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
common_files = parser.ml periodic.ml main.ml
monpar.native:
ocamlfind ocamlopt $(common_files)
native:
ocamlfind ocamlopt $(common_files)
monpar.byte:
byte:
ocamlfind ocamlc $(common_files)
clean:
rm -f *.cmo *.cmi *.o *.out *.cmx

View File

@@ -0,0 +1,7 @@
```bash
$ make native
```
```bash
$ make byte
```