forked from TrueCloudLab/restic
13 lines
164 B
Makefile
13 lines
164 B
Makefile
.PHONY: all clean test restic
|
|
|
|
all: restic
|
|
|
|
restic:
|
|
go run -mod=vendor build.go || go run build.go
|
|
|
|
clean:
|
|
rm -f restic
|
|
|
|
test:
|
|
go test ./cmd/... ./internal/...
|
|
|