mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
13 lines
114 B
Makefile
13 lines
114 B
Makefile
.PHONY: all clean test restic
|
|
|
|
all: restic
|
|
|
|
restic:
|
|
go run build.go
|
|
|
|
clean:
|
|
rm -rf restic
|
|
|
|
test:
|
|
go test ./...
|