summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: b4a5b41387e7858fdac034384bc6a4e48fb9d962 (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}/http/client

test:
	go test -v ${MOD}/http/client
.PHONY: test