aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2015-01-30 14:26:00 -0500
committerChouser <chouser@n01se.net>2015-01-30 14:26:00 -0500
commit755b86502a55c162c09f928cdda047aabe5878cf (patch)
tree248839b276215406621db3695d42952732e4069e
parentcbcf8a6308e4a4984d6827967a67e5c88646b86e (diff)
downloadmal-755b86502a55c162c09f928cdda047aabe5878cf.tar.gz
mal-755b86502a55c162c09f928cdda047aabe5878cf.zip
OCaml: add make targets for stats
-rw-r--r--ocaml/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/ocaml/Makefile b/ocaml/Makefile
index 72d159a..71c7e6b 100644
--- a/ocaml/Makefile
+++ b/ocaml/Makefile
@@ -28,4 +28,10 @@ $(STEP_BINS): %: %.ml $(MAL_LIB)
clean:
rm -f $(STEP_BINS) mal mal_lib.* *.cmo *.cmx *.cmi *.o
-.PHONY: all repl clean
+stats: $(MODULES) stepA_interop.ml
+ @wc $^
+
+stats-lisp: env.ml core.ml stepA_interop.ml
+ @wc $^
+
+.PHONY: all repl clean stats stats-lisp