summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: edbfb2dd35257a94ccf3dd347386e4b64bd29982 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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