blob: ed32eef8946f6fcb8f3febbb729434ddf0c9f5d1 (
plain) (
tree)
|
|
# SPDX-License-Identifier: ISC
# Copyright © 2021 siddharth <s@ricketyspace.net>
MOD=ricketyspace.net/peach
peach: fmt
go build ${BUILD_OPTS}
fmt:
go fmt ${MOD} ${MOD}/client ${MOD}/nws
test:
go test ${MOD}/client ${MOD}/nws ${ARGS}
.PHONY: test
clean:
go clean
.PHONY: clean
image:
./bin/image
.PHONY: image
image-push:
./bin/image-push
.PHONY: image-push
|