2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00
restic/Makefile
Tobias Klein bee09c1a0f test
2017-09-09 16:33:51 +02:00

14 lines
133 B
Makefile

.PHONY: all clean test restic
all: restic
restic:
go run build.go
clean:
rm -f restic
test:
go test ./cmd/... ./internal/...