mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
34 lines
665 B
Makefile
34 lines
665 B
Makefile
|
|
TESTS = tests/types.js tests/reader.js tests/step5_tco.js
|
|
|
|
SOURCES_BASE = node_readline.js types.js reader.js printer.js
|
|
SOURCES_LISP = env.js core.js stepA_more.js
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
WEB_SOURCES = $(SOURCES:node_readline.js=josh_readline.js)
|
|
|
|
all: mal.js mal_web.js
|
|
|
|
mal.js: $(SOURCES)
|
|
echo "#!/usr/bin/env node" > $@
|
|
cat $+ | grep -v "= *require('./" >> $@
|
|
chmod +x $@
|
|
|
|
mal_web.js: $(WEB_SOURCES)
|
|
cat $+ | grep -v "= *require('./" > $@
|
|
|
|
clean:
|
|
rm -f mal.js mal_web.js
|
|
|
|
.PHONY: stats tests $(TESTS)
|
|
|
|
stats: $(SOURCES)
|
|
@wc $^
|
|
stats-lisp: $(SOURCES_LISP)
|
|
@wc $^
|
|
|
|
tests: $(TESTS)
|
|
|
|
$(TESTS):
|
|
@echo "Running $@"; \
|
|
node $@ || exit 1; \
|