fix(Makefile): build targets

Adds missing dependencies to the `build` and `install` targets.
This commit is contained in:
Chris Lane 2020-02-26 19:21:07 -05:00
parent 6e388c3693
commit 8453af8601
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ releases := \
## build: builds an executable for your architecture
.PHONY: build
build: $(dist_dir) clean generate
build: $(dist_dir) clean vendor generate
$(GO) build $(BUILD_FLAGS) -o $(dist_dir)/cheat $(cmd_dir)
## build-release: builds release executables
@ -85,7 +85,7 @@ generate:
## install: builds and installs cheat on your PATH
.PHONY: install
install:
install: build
$(GO) install $(BUILD_FLAGS) $(GOBIN) $(cmd_dir)
## clean: removes compiled executables