2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-24 21:57:41 +00:00

Fix Makefile

This commit is contained in:
Alexander Neumann 2016-03-31 19:20:57 +02:00
parent 9e81b158bf
commit 380e9b8119

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