mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
90f618cbe7
Also, add missed postscript interop tests.
16 lines
301 B
Makefile
16 lines
301 B
Makefile
TESTS =
|
|
|
|
SOURCES_BASE = node_readline.coffee types.coffee \
|
|
reader.coffee printer.coffee
|
|
SOURCES_LISP = env.coffee core.coffee stepA_mal.coffee
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
|
|
#all: mal.rb
|
|
|
|
.PHONY: stats tests $(TESTS)
|
|
|
|
stats: $(SOURCES)
|
|
@wc $^
|
|
stats-lisp: $(SOURCES_LISP)
|
|
@wc $^
|