26 lines
504 B
Makefile
26 lines
504 B
Makefile
CAMLC = :::boot:ocamlrun :::boot:ocamlc -I :::stdlib:
|
|
|
|
all Ä graphics.cmi graphics.cma
|
|
set status 0
|
|
|
|
graphics.cma Ä graphics.cmo
|
|
{CAMLC} -a -o graphics.cma graphics.cmo
|
|
|
|
partialclean Ä
|
|
delete -i Å.cm[aio] || set status 0
|
|
|
|
clean Ä partialclean
|
|
set status 0
|
|
|
|
install Ä
|
|
duplicate -y graphics.cm[ia] graphics.mli "{LIBDIR}"
|
|
|
|
.cmi Ä .mli
|
|
{CAMLC} -c {default}.mli
|
|
|
|
.cmo Ä .ml
|
|
{CAMLC} -c {default}.ml
|
|
|
|
depend Ä
|
|
:::boot:ocamlrun :::tools:ocamldep Å.mli Å.ml > Makefile.Mac.depend
|