1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/Makefile
handlerug c7e4281398
Remove unneeded flags from Makefile
And remove the `help` target. Who the fuck runs `make help`?!
2021-06-29 21:12:46 +07:00

18 lines
194 B
Makefile

WIKI=~/src/example-wiki
run: build
./mycorrhiza ${WIKI}
config_run: build
./mycorrhiza ${WIKI}
devconfig_run: build
./mycorrhiza ${WIKI}
build:
go generate
go build .
test:
go test .