11 lines
115 B
Makefile
11 lines
115 B
Makefile
|
|
|
|
%.cmx: %.ml
|
|
ocamlopt -c $<
|
|
|
|
tipe: tipe.cmx
|
|
ocamlopt -o tipe str.cmxa tipe.cmx
|
|
|
|
clean:
|
|
rm tipe *.cmx *.cmi *.o
|