mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
34 lines
657 B
Makefile
34 lines
657 B
Makefile
#####################
|
|
|
|
SOURCES_BASE = types.nim reader.nim printer.nim
|
|
SOURCES_LISP = env.nim core.nim stepA_mal.nim
|
|
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
|
|
|
|
#####################
|
|
|
|
SRCS = step0_repl.nim step1_read_print.nim step2_eval.nim step3_env.nim \
|
|
step4_if_fn_do.nim step5_tco.nim step6_file.nim step7_quote.nim \
|
|
step8_macros.nim step9_try.nim stepA_mal.nim
|
|
BINS = $(SRCS:%.nim=%)
|
|
|
|
#####################
|
|
|
|
all: $(BINS) mal
|
|
|
|
mal: $(word $(words $(BINS)),$(BINS))
|
|
cp $< $@
|
|
|
|
$(BINS): %: %.nim
|
|
nim -d:release c $@
|
|
|
|
clean:
|
|
rm -rf nimcache/ $(BINS)
|
|
rm -f mal
|
|
|
|
.PHONY: stats stats-lisp
|
|
|
|
stats: $(SOURCES)
|
|
@wc $^
|
|
stats-lisp: $(SOURCES_LISP)
|
|
@wc $^
|