Browse Source

make install

pull/2435/head
Chris Lu 3 years ago
parent
commit
c77c0de418
  1. 5
      weed/Makefile

5
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)

Loading…
Cancel
Save