Julia: missed Makefile for stats.
authorJoel Martin <github@martintribe.org>
Wed, 1 Apr 2015 04:12:25 +0000 (23:12 -0500)
committerJoel Martin <github@martintribe.org>
Wed, 1 Apr 2015 04:12:25 +0000 (23:12 -0500)
julia/Makefile [new file with mode: 0644]

diff --git a/julia/Makefile b/julia/Makefile
new file mode 100644 (file)
index 0000000..b925092
--- /dev/null
@@ -0,0 +1,11 @@
+
+SOURCES_BASE = reader.jl printer.jl readline_mod.jl types.jl
+SOURCES_LISP = env.jl core.jl stepA_mal.jl
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
+
+.PHONY: stats tests $(TESTS)
+
+stats: $(SOURCES)
+       @wc $^
+stats-lisp: $(SOURCES_LISP)
+       @wc $^