2025-03-26 01:15:31 +01:00
|
|
|
CC= hare build
|
|
|
|
|
|
2025-04-09 01:31:26 +02:00
|
|
|
BINS = 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
|
|
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
all: $(BINS)
|
|
|
|
|
|
2025-03-30 19:10:34 +02:00
|
|
|
%: %.ha $(wildcard mal/*.ha)
|
2025-04-09 01:31:26 +02:00
|
|
|
$(CC) -o $@ $<
|
2025-03-26 01:15:31 +01:00
|
|
|
|
2025-04-09 01:31:26 +02:00
|
|
|
.PHONY: clean
|
|
|
|
|
clean:
|
|
|
|
|
rm $(BINS)
|