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 GOINSTALL=$(GOCMD) install
GOBUILD=$(GOCMD) build GOBUILD=$(GOCMD) build
GOTEST=$(GOCMD) test GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
BINARY_NAME=writefreely BINARY_NAME=writefreely
all : build all : build
build: build: deps
cd cmd/writefreely; $(GOBUILD) cd cmd/writefreely; $(GOBUILD)
test: test:
@ -16,6 +17,9 @@ run:
$(GOINSTALL) ./... $(GOINSTALL) ./...
$(BINARY_NAME) --debug $(BINARY_NAME) --debug
deps :
$(GOGET) ./...
install : install :
./keys.sh ./keys.sh
cd less/; $(MAKE) install $(MFLAGS) cd less/; $(MAKE) install $(MFLAGS)