mirror of
https://github.com/restic/restic.git
synced 2025-01-03 05:35:43 +00:00
Fix Makefile
This commit is contained in:
parent
9e81b158bf
commit
380e9b8119
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -1,12 +1,12 @@
|
||||||
.PHONY: all clean test
|
.PHONY: all clean test restic
|
||||||
|
|
||||||
all: restic
|
all: restic
|
||||||
|
|
||||||
restic: $(SOURCE)
|
restic:
|
||||||
go run build.go
|
go run build.go
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf restic
|
rm -rf restic
|
||||||
|
|
||||||
test: $(SOURCE)
|
test:
|
||||||
go test ./...
|
go test ./...
|
||||||
|
|
Loading…
Reference in a new issue