1
0
mirror of https://github.com/restic/restic.git synced 2024-06-20 07:06:38 +02:00
restic/Makefile
2020-03-01 11:30:02 +01: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/...