1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/Makefile
2021-05-27 15:17:54 +05:00

22 lines
334 B
Makefile

WIKI=~/src/example-wiki
run: build
./mycorrhiza ${WIKI}
config_run: build
./mycorrhiza -config-path "assets/config.ini" ${WIKI}
devconfig_run: build
./mycorrhiza -config-path "assets/devconfig.ini" ${WIKI}
build:
go generate
go build .
test:
go test .
help:
echo "Read the Makefile to see what it can do. It is simple."