mirror of
https://github.com/seqizz/restic.git
synced 2024-09-12 20:40:13 +02:00
13 lines
133 B
Makefile
13 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/...
|
|
|