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

Julia: missed Makefile for stats.

This commit is contained in:
Joel Martin 2015-03-31 23:12:25 -05:00
parent 7e0bb668cf
commit 7a20dbc805

11
julia/Makefile Normal file
View File

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