bbgo_origin/Makefile

65 lines
1.6 KiB
Makefile
Raw Normal View History

2020-11-11 08:34:20 +00:00
TARGET_ARCH ?= amd64
BUILD_DIR ?= build
BIN_DIR := $(BUILD_DIR)/bbgo
DIST_DIR ?= dist
GIT_DESC = $$(git describe --long --tags)
all: bbgo
$(BIN_DIR):
mkdir -p $@
bin-dir: $(BIN_DIR)
bbgo-linux: $(BIN_DIR)
GOOS=linux GOARCH=$(TARGET_ARCH) go build -o $(BIN_DIR)/$@ ./cmd/bbgo
bbgo-darwin:
GOOS=darwin GOARCH=$(TARGET_ARCH) go build -o $(BIN_DIR)/$@ ./cmd/bbgo
bbgo:
go build -o $(BIN_DIR)/$@ ./cmd/$@
clean:
rm -rf $(BUILD_DIR) $(DIST_DIR)
2020-11-11 08:34:20 +00:00
dist: bin-dir bbgo-linux bbgo-darwin
mkdir -p $(DIST_DIR)
tar -C $(BUILD_DIR) -cvzf $(DIST_DIR)/bbgo-$$(git describe --tags).tar.gz .
2021-01-15 02:31:37 +00:00
migrations:
rockhopper compile --config rockhopper.yaml --output pkg/migrations
git add -v pkg/migrations
git commit -m "Update migration package" pkg/migrations
2021-01-15 02:31:37 +00:00
docker:
GOPATH=$(PWD)/_mod go mod download
docker build --build-arg GO_MOD_CACHE=_mod --tag yoanlin/bbgo .
2020-12-17 08:19:31 +00:00
bash -c "[[ -n $(DOCKER_TAG) ]] && docker tag yoanlin/bbgo yoanlin/bbgo:$(DOCKER_TAG)"
2021-02-04 10:22:47 +00:00
2020-12-17 08:32:16 +00:00
docker-push:
docker push yoanlin/bbgo
bash -c "[[ -n $(DOCKER_TAG) ]] && docker push yoanlin/bbgo:$(DOCKER_TAG)"
2021-02-04 12:30:51 +00:00
frontend/out/index.html: .FORCE
(cd frontend && yarn export)
2021-02-04 12:30:51 +00:00
pkged.go: frontend/out/index.html
pkger
git commit pkged.go -m "pkger: update bundled static files"
2021-02-04 12:30:51 +00:00
static: frontend/out/index.html pkged.go
2021-02-04 12:36:34 +00:00
build/BBGO.app/Contents/MacOS/bbgo-desktop: .FORCE
2021-02-04 12:30:51 +00:00
mkdir -p $(dir $@)
go build -o $@ ./cmd/bbgo-desktop
desktop: static build/BBGO.app/Contents/MacOS/bbgo-desktop
2021-02-04 10:22:47 +00:00
# bash desktop/build-darwin.sh
tools:
GO111MODULES=off go get github.com/markbates/pkger/cmd/pkger
2021-02-04 12:30:51 +00:00
.PHONY: dist migrations static desktop .FORCE