From 380e9b8119a42a359da2e4866f1236bee89767c8 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Thu, 31 Mar 2016 19:20:57 +0200 Subject: [PATCH] Fix Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6c365c1e0..fa1804cfa 100644 --- a/Makefile +++ b/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 ./...