1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-14 14:20:25 +00:00
mycorrhiza/Makefile

22 lines
334 B
Makefile
Raw Normal View History

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