From 40798e048e2a07fcef5179312fa15bc0a2f58558 Mon Sep 17 00:00:00 2001 From: lewis <747342561@qq.com> Date: Thu, 3 Mar 2022 15:01:27 +0800 Subject: [PATCH] makefile --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9d37dfe99..e4e7a805f 100755 --- a/Makefile +++ b/Makefile @@ -97,16 +97,12 @@ TAGS ?= TAGS_SPLIT := $(subst $(COMMA), ,$(TAGS)) TAGS_EVIDENCE := $(MAKE_EVIDENCE_DIR)/tags -ifeq ($(filter $(TAGS_SPLIT),bindata),bindata) - WEBPACK_CONFIGS = webpack_pro.config.js -endif - GO_DIRS := cmd integrations models modules routers build services vendor GO_SOURCES := $(wildcard *.go) GO_SOURCES += $(shell find $(GO_DIRS) -type f -name "*.go" -not -path modules/options/bindata.go -not -path modules/public/bindata.go -not -path modules/templates/bindata.go) ifeq ($(filter $(TAGS_SPLIT),bindata),bindata) - GO_SOURCES += $(BINDATA_DEST) + GO_SOURCES += $(BINDATA_DEST) endif GO_SOURCES_OWN := $(filter-out vendor/% %/bindata.go, $(GO_SOURCES))