diff options
| author | Chouser <chouser@n01se.net> | 2015-01-30 14:26:00 -0500 |
|---|---|---|
| committer | Chouser <chouser@n01se.net> | 2015-01-30 14:26:00 -0500 |
| commit | 755b86502a55c162c09f928cdda047aabe5878cf (patch) | |
| tree | 248839b276215406621db3695d42952732e4069e | |
| parent | cbcf8a6308e4a4984d6827967a67e5c88646b86e (diff) | |
| download | mal-755b86502a55c162c09f928cdda047aabe5878cf.tar.gz mal-755b86502a55c162c09f928cdda047aabe5878cf.zip | |
OCaml: add make targets for stats
| -rw-r--r-- | ocaml/Makefile | 8 |
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 |
