mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
8f6c1d0a65
make → make make run → run make check → check It still doesn't track any dependencies to avoid unnecessary rebuilds (like before), but eh. The Go toolchain does, though.
16 lines
183 B
Makefile
16 lines
183 B
Makefile
.POSIX:
|
|
include config.example.mk
|
|
-include config.mk
|
|
|
|
mycorrhiza:
|
|
go generate
|
|
go build .
|
|
|
|
run: mycorrhiza
|
|
./mycorrhiza ${WIKIPATH}
|
|
|
|
check:
|
|
go test .
|
|
|
|
.PHONY: mycorrhiza run check
|