1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-05 17:40:26 +00:00

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.
This commit is contained in:
Umar Getagazov 2021-11-10 19:50:54 +07:00
parent a6eb2ca82b
commit 8f6c1d0a65

View File

@ -2,18 +2,14 @@
include config.example.mk
-include config.mk
run: build
./mycorrhiza ${WIKIPATH}
config_run: build
./mycorrhiza ${WIKIPATH}
devconfig_run: build
./mycorrhiza ${WIKIPATH}
build:
mycorrhiza:
go generate
go build .
test:
run: mycorrhiza
./mycorrhiza ${WIKIPATH}
check:
go test .
.PHONY: mycorrhiza run check