mirror of
https://github.com/restic/restic.git
synced 2024-12-21 23:33:03 +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
|
||||
|
||||
restic: $(SOURCE)
|
||||
restic:
|
||||
go run build.go
|
||||
|
||||
clean:
|
||||
rm -rf restic
|
||||
|
||||
test: $(SOURCE)
|
||||
test:
|
||||
go test ./...
|
||||
|
|
Loading…
Reference in a new issue