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