2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 14:40:49 +00:00
restic/Makefile
2018-08-31 22:00:47 +02:00

14 lines
164 B
Makefile

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