1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00

OCaml: add make targets for stats

This commit is contained in:
Chouser 2015-01-30 14:26:00 -05:00
parent cbcf8a6308
commit 755b86502a

View File

@ -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