aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-01-30 16:50:18 -0600
committerJoel Martin <github@martintribe.org>2015-01-30 16:50:18 -0600
commit882b43289ecc0c13a030605b68be52107b1c64b5 (patch)
tree0ec7173cbe4afab0cebe99c50c8e020a29ab5d93
parentffd31966ec6a5e362dd16911643a43e2ce098a11 (diff)
parent755b86502a55c162c09f928cdda047aabe5878cf (diff)
downloadmal-882b43289ecc0c13a030605b68be52107b1c64b5.tar.gz
mal-882b43289ecc0c13a030605b68be52107b1c64b5.zip
Merge pull request #4 from Chouser/ocaml
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