aoc2022/Makefile

13 lines
215 B
Makefile
Raw Normal View History

2022-12-18 07:48:22 -05:00
MMCFLAGS := --infer-all --warn-unused-imports \
--output-compile-error-lines 1000 \
-s asm_fast.gc.stseg
2022-12-09 05:23:54 -05:00
2022-12-01 13:28:05 -05:00
all: aoc
aoc: $(wildcard *.m)
2022-12-14 09:28:39 -05:00
mmc $(MMCFLAGS) --make aoc
2022-12-01 13:28:05 -05:00
clean:
rm -rf Mercury
rm -f *.mh *.err aoc