From 7a20dbc8054daa9cd9f0cb044e705ea31a94d5ee Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Tue, 31 Mar 2015 23:12:25 -0500 Subject: [PATCH] Julia: missed Makefile for stats. --- julia/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 julia/Makefile diff --git a/julia/Makefile b/julia/Makefile new file mode 100644 index 00000000..b9250921 --- /dev/null +++ b/julia/Makefile @@ -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 $^