summaryrefslogtreecommitdiffstats
path: root/server/Makefile
blob: 8954492897b2d4c99d4e603ec8461c6b07bb744d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
SRC = server.go record.go

server: ${SRC}
	go build $^

fmt:
	gofmt -l -s -w ${SRC}

clean:
	rm -f server