1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/impls/zig/Makefile

17 lines
273 B
Makefile
Raw Permalink Normal View History

2019-12-08 23:07:41 +03:00
STEPS = step0_repl step1_read_print step2_eval step3_env step4_if_fn_do step5_tco step6_file step7_quote step8_macros step9_try stepA_mal
2019-12-08 23:07:41 +03:00
all: $(STEPS)
dist: mal
%: %.zig
zig build -Drelease-fast=true
2019-12-13 09:24:16 +03:00
ln -sf zig-cache/bin/$* .
2020-01-17 03:46:28 +03:00
.PHONY: clean
clean:
rm -f $(STEPS)