2021-05-27 10:17:42 +00:00
|
|
|
WIKI=~/src/example-wiki
|
|
|
|
|
2020-07-05 12:53:57 +00:00
|
|
|
run: build
|
2021-05-27 10:17:42 +00:00
|
|
|
./mycorrhiza ${WIKI}
|
2020-07-05 12:53:57 +00:00
|
|
|
|
2021-03-06 09:40:47 +00:00
|
|
|
config_run: build
|
2021-05-27 10:17:42 +00:00
|
|
|
./mycorrhiza -config-path "assets/config.ini" ${WIKI}
|
2021-03-06 09:40:47 +00:00
|
|
|
|
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
|
|
|
|
2020-07-05 12:53:57 +00:00
|
|
|
build:
|
2020-08-31 17:52:26 +00:00
|
|
|
go generate
|
2020-07-05 12:53:57 +00:00
|
|
|
go build .
|
|
|
|
|
|
|
|
test:
|
2020-08-05 15:08:59 +00:00
|
|
|
go test .
|
2020-07-05 12:53:57 +00:00
|
|
|
|
|
|
|
help:
|
|
|
|
echo "Read the Makefile to see what it can do. It is simple."
|
|
|
|
|