1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-07 14:40:16 +00:00
mycorrhiza/Makefile

22 lines
334 B
Makefile
Raw Normal View History

2021-05-27 15:17:42 +05:00
WIKI=~/src/example-wiki
run: build
2021-05-27 15:17:42 +05:00
./mycorrhiza ${WIKI}
config_run: build
2021-05-27 15:17:42 +05:00
./mycorrhiza -config-path "assets/config.ini" ${WIKI}
2021-04-26 21:29:41 +05:00
devconfig_run: build
2021-05-27 15:17:42 +05:00
./mycorrhiza -config-path "assets/devconfig.ini" ${WIKI}
2021-04-26 21:29:41 +05:00
build:
2020-08-31 22:52:26 +05:00
go generate
go build .
test:
go test .
help:
echo "Read the Makefile to see what it can do. It is simple."