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

MOD=ricketyspace.net/fern

fern: fmt fix
	go build

fmt:
	go fmt ./...

fix:
	go fix ./...

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