Makefile -- Fix bug introduced by 93c451cb0c

make would always run webpack, even if output was generated already.
This commit is contained in:
Eugene Bujak 2018-10-10 00:05:14 +03:00
parent eb5f66ad9e
commit 9b489c8ddb
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ NATIVE_GOARCH = $(shell unset GOARCH; go env GOARCH)
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
mkfile_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
GOPATH := $(mkfile_dir)/build/gopath
STATIC := build/static/bundle.css build/static/bundle.js build/static/index.html
STATIC := build/static/index.html
.PHONY: all build clean
all: build