mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
20 lines
285 B
Makefile
20 lines
285 B
Makefile
run: build
|
|
./mycorrhiza metarrhiza
|
|
|
|
auth_run: build
|
|
./mycorrhiza -auth-method fixed metarrhiza
|
|
|
|
gemini_run: build
|
|
./mycorrhiza -gemini-cert-path "." metarrhiza
|
|
|
|
build:
|
|
go generate
|
|
go build .
|
|
|
|
test:
|
|
go test .
|
|
|
|
help:
|
|
echo "Read the Makefile to see what it can do. It is simple."
|
|
|