Fix Makefile

This commit is contained in:
Alexander Neumann 2016-03-31 19:20:57 +02:00
parent 9e81b158bf
commit 380e9b8119
1 changed files with 3 additions and 3 deletions

View File

@ -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 ./...