8 lines
122 B
Makefile
8 lines
122 B
Makefile
all: aoc
|
|
|
|
aoc: $(wildcard *.m)
|
|
nix shell nixpkgs#mercury -c mmc --make aoc
|
|
|
|
clean:
|
|
rm -rf Mercury
|
|
rm -f *.mh *.err aoc
|