8 lines
203 B
Standard ML
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;
|