1
0
mirror of https://github.com/restic/restic.git synced 2024-06-23 07:36:38 +02: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/...