aoc2022/Makefile

13 lines
215 B
Makefile

MMCFLAGS := --infer-all --warn-unused-imports \
--output-compile-error-lines 1000 \
-s asm_fast.gc.stseg
all: aoc
aoc: $(wildcard *.m)
mmc $(MMCFLAGS) --make aoc
clean:
rm -rf Mercury
rm -f *.mh *.err aoc