1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2026-05-20 04:12:09 +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
+7 -11
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