9 lines
145 B
Makefile
9 lines
145 B
Makefile
%.cmx: %.ml
|
|
ocamlopt -linkall -c $<
|
|
|
|
spline: spline.cmx
|
|
ocamlopt -o spline -linkall str.cmxa spline.cmx
|
|
|
|
clean:
|
|
rm -rf spline *.cmx *.cmi *.o
|