From 7ebf5397a3fb3c179d6d2a948626ee8eac74a020 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Thu, 20 Aug 2015 19:05:19 +0200 Subject: [PATCH] clean up Makefile --- Makefile | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Makefile b/Makefile index e5a11720b..9052c8d46 100644 --- a/Makefile +++ b/Makefile @@ -1,22 +1,12 @@ .PHONY: all clean test -SOURCE=$(wildcard *.go) $(wildcard */*.go) $(wildcard */*/*.go) - -export GOPATH GOX_OS - all: restic restic: $(SOURCE) go run build.go -restic.debug: $(SOURCE) - go run build.go -tags debug - clean: - rm -rf restic restic.debug + rm -rf restic test: $(SOURCE) go run run_tests.go /dev/null - -all.cov: $(SOURCE) - go run run_tests.go all.cov