mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
12 lines
132 B
Makefile
12 lines
132 B
Makefile
.PHONY: all clean test restic
|
|
|
|
all: restic
|
|
|
|
restic:
|
|
go run build.go
|
|
|
|
clean:
|
|
rm -f restic
|
|
|
|
test:
|
|
go test ./cmd/... ./internal/...
|