Get dependencies before building

This commit is contained in:
Matt Baer 2018-11-08 12:56:14 -05:00
parent 6867ac07b4
commit 741292668a
1 changed files with 5 additions and 1 deletions

View File

@ -2,11 +2,12 @@ GOCMD=go
GOINSTALL=$(GOCMD) install
GOBUILD=$(GOCMD) build
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
BINARY_NAME=writefreely
all : build
build:
build: deps
cd cmd/writefreely; $(GOBUILD)
test:
@ -16,6 +17,9 @@ run:
$(GOINSTALL) ./...
$(BINARY_NAME) --debug
deps :
$(GOGET) ./...
install :
./keys.sh
cd less/; $(MAKE) install $(MFLAGS)