1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/Makefile
Umar Getagazov 8f6c1d0a65 Update Makefile
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.
2021-11-10 20:09:57 +07:00

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