11 lines
204 B
Makefile
11 lines
204 B
Makefile
MMCFLAGS := --infer-all --no-inform-inferred --warn-unused-imports \
|
|
-s asm_fast.gc.debug.stseg
|
|
|
|
all: aoc
|
|
|
|
aoc: $(wildcard *.m)
|
|
mmc $(MMCFLAGS) --make aoc
|
|
|
|
clean:
|
|
rm -rf Mercury
|
|
rm -f *.mh *.err aoc
|