Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(cosmic-swingset): have make install do what you expect #4098

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions packages/cosmic-swingset/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,15 @@ AGC_START_ARGS =

BIN := $(shell echo $${GOBIN-$${GOPATH-$$HOME/go}/bin})

all: build-chain install install-agd install-helper
# This probably shouldn't install, but that's what published instructions
# expect.
all: build-chain install-nobuild

client: build-helper install install-agd install-helper
client: build-helper install-nobuild

install-nobuild: install-local install-agd install-helper

install: all install-nobuild

scenario0-setup:
mkdir -p t9
Expand Down Expand Up @@ -217,7 +223,7 @@ install-agd:
install-helper:
install -c $(GOSRC)/build/ag-cosmos-helper "$(BIN)/ag-cosmos-helper"

install:
install-local:
mkdir -p "$(BIN)"
ln -sf "$$PWD/bin/ag-chain-cosmos" "$$PWD/bin/ag-nchainz" "$(BIN)/"

Expand Down