Files
COS301-HW5/MLRISC/makeall-110.0.6.sml
2024-04-25 05:02:33 +00:00

8 lines
203 B
Standard ML

(*
* Recompile everything in this directory
*)
val current = ref "";
fun make f = (print("[Compiling "^f^"]\n"); current := f; CM.make'("cm/"^f));
fun again _ = make(!current);
val _ = app make files;