Skip to content

Commit

Permalink
remove redundant operator-ui make dependencies (#11729)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Jan 10, 2024
1 parent 89a8ba4 commit 2a20248
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,14 @@ GO_LDFLAGS := $(shell tools/bin/ldflags)
GOFLAGS = -ldflags "$(GO_LDFLAGS)"

.PHONY: install
install: operator-ui-autoinstall install-chainlink-autoinstall ## Install chainlink and all its dependencies.
install: install-chainlink-autoinstall ## Install chainlink and all its dependencies.

.PHONY: install-git-hooks
install-git-hooks: ## Install git hooks.
git config core.hooksPath .githooks

.PHONY: install-chainlink-autoinstall
install-chainlink-autoinstall: | pnpmdep gomod install-chainlink ## Autoinstall chainlink.
.PHONY: operator-ui-autoinstall
operator-ui-autoinstall: | operator-ui ## Autoinstall frontend UI.

.PHONY: pnpmdep
pnpmdep: ## Install solidity contract dependencies through pnpm
Expand Down Expand Up @@ -44,13 +42,13 @@ godoc: ## Install and run godoc
install-chainlink: operator-ui ## Install the chainlink binary.
go install $(GOFLAGS) .

chainlink: operator-ui ## Build the chainlink binary.
chainlink: ## Build the chainlink binary.
go build $(GOFLAGS) .

chainlink-dev: operator-ui ## Build a dev build of chainlink binary.
chainlink-dev: ## Build a dev build of chainlink binary.
go build -tags dev $(GOFLAGS) .

chainlink-test: operator-ui ## Build a test build of chainlink binary.
chainlink-test: ## Build a test build of chainlink binary.
go build $(GOFLAGS) .

.PHONY: chainlink-local-start
Expand Down

0 comments on commit 2a20248

Please sign in to comment.