mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
c7e4281398
And remove the `help` target. Who the fuck runs `make help`?!
18 lines
194 B
Makefile
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 .
|