summaryrefslogtreecommitdiff
path: root/Makefile
blob: 0ee419096b159d79fa44bdb3bbc4403db0402559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	@./build.sh
build:
	@./build.sh all
clean:
	rm -rf rr
install: all
	cp rr /usr/local/bin/rr
uninstall: 
	rm -f /usr/local/bin/rr
test:
	go test -v -race -cover
	go test -v -race -cover ./service
	go test -v -race -cover ./service/rpc
	go test -v -race -cover ./service/http
	go test -v -race -cover ./service/static