mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
14 lines
133 B
Makefile
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/...
|
|
|