summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 740b9fd1b84a058396d335312d21b5a015b6e4ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: ISC
# Copyright © 2021 siddharth <s@ricketyspace.net>

MOD=ricketyspace.net/peach

peach: fmt
	go build

fmt:
	go fmt ${MOD} ${MOD}/client ${MOD}/nws

test:
	go test ${MOD}/client ${MOD}/nws ${ARGS}
.PHONY: test