aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/weed/Makefile b/weed/Makefile
index 94faa11f2..7215ec308 100644
--- a/weed/Makefile
+++ b/weed/Makefile
@@ -2,10 +2,13 @@ BINARY = weed
SOURCE_DIR = .
-all: debug_mount
+all: install
.PHONY : clean debug_mount
+install:
+ go install
+
clean:
go clean $(SOURCE_DIR)
rm -f $(BINARY)