2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +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/...