Skip to content

Commit

Permalink
Merge pull request #102 from dbermond/fix-webui-target-regression
Browse files Browse the repository at this point in the history
Makefile: fix regression in webui target
  • Loading branch information
majestrate authored Feb 18, 2023
2 parents a2aa572 + 8cb60fb commit 624e2a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ CLI ?= XD-CLI$(BINEXT)
build: $(CLI)


$(XD): webui
$(XD): $(WEBUI_CORE)
$(GO) build -a -ldflags "-X xd/lib/version.Git=$(GIT_VERSION)" -tags='$(TAGS)' -o $(XD)

dev: webui
dev: $(WEBUI_CORE)
$(GO) build -race -v -a -ldflags "-X xd/lib/version.Git=$(GIT_VERSION)" -tags='$(TAGS)' -o $(XD)

$(CLI): $(XD)
Expand Down Expand Up @@ -80,9 +80,9 @@ $(WEBUI_LOGO):

$(WEBUI_CORE): $(WEBUI_LOGO)
$(MAKE) -C $(WEBUI)
$(CP) $(WEB_FILES) $(REPO)/lib/rpc/assets/

webui: $(WEBUI_CORE)
$(CP) $(WEB_FILES) $(REPO)/lib/rpc/assets/

no-webui:
$(GO) build -ldflags "-X xd/lib/version.Git=$(GIT_VERSION)" -o $(XD)
Expand Down

0 comments on commit 624e2a1

Please sign in to comment.