mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 23:34:26 +00:00
7a96f37541
This means even the native build architecture (amd64) will have statically linked binaries Fixes #39
82 lines
2.3 KiB
Makefile
82 lines
2.3 KiB
Makefile
OUTPUT_DIR = ./builds
|
|
GIT_COMMIT = `git rev-parse HEAD | cut -c1-7`
|
|
VERSION = $(shell git describe --tags)
|
|
BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION)"
|
|
WEBPACK_MODE = production
|
|
export CGO_ENABLED=0
|
|
|
|
gotty: main.go assets server/*.go webtty/*.go backend/*.go Makefile
|
|
go build ${BUILD_OPTIONS}
|
|
|
|
docker:
|
|
docker build . -t gotty-bash:$(VERSION)
|
|
|
|
.PHONY: all docker assets
|
|
assets: bindata/static/js/gotty.js.map \
|
|
bindata/static/js/gotty.js \
|
|
bindata/static/index.html \
|
|
bindata/static/icon.svg \
|
|
bindata/static/favicon.ico \
|
|
bindata/static/css/index.css \
|
|
bindata/static/css/xterm.css \
|
|
bindata/static/css/xterm_customize.css \
|
|
bindata/static/manifest.json \
|
|
bindata/static/icon_192.png
|
|
|
|
all: gotty
|
|
|
|
bindata/static bindata/static/css bindata/static/js:
|
|
mkdir -p $@
|
|
|
|
bindata/static/%: resources/% | bindata/static/css
|
|
cp "$<" "$@"
|
|
|
|
bindata/static/css/%.css: resources/%.css | bindata/static
|
|
cp "$<" "$@"
|
|
|
|
bindata/static/css/xterm.css: js/node_modules/xterm/css/xterm.css | bindata/static
|
|
cp "$<" "$@"
|
|
|
|
js/node_modules/xterm/dist/xterm.css:
|
|
cd js && \
|
|
npm install
|
|
|
|
bindata/static/js/gotty.js.map bindata/static/js/gotty.js: js/src/* | js/node_modules/webpack
|
|
cd js && \
|
|
npx webpack --mode=$(WEBPACK_MODE)
|
|
|
|
js/node_modules/webpack:
|
|
cd js && \
|
|
npm install
|
|
|
|
README-options:
|
|
./gotty --help | sed '1,/GLOBAL OPTIONS/ d' > options.txt.tmp
|
|
sed -f README.md.sed -i README.md
|
|
rm options.txt.tmp
|
|
|
|
tools:
|
|
go get github.com/mitchellh/gox
|
|
go get github.com/tcnksm/ghr
|
|
|
|
test:
|
|
if [ `go fmt $(go list ./... | grep -v /vendor/) | wc -l` -gt 0 ]; then echo "go fmt error"; exit 1; fi
|
|
go test ./...
|
|
|
|
cross_compile:
|
|
GOARM=5 gox -os="darwin linux freebsd netbsd openbsd solaris" -arch="386 amd64 arm arm64" -osarch="!darwin/386" -osarch="!darwin/arm" $(BUILD_OPTIONS) -output "${OUTPUT_DIR}/pkg/{{.OS}}_{{.Arch}}/{{.Dir}}"
|
|
|
|
targz:
|
|
mkdir -p ${OUTPUT_DIR}/dist
|
|
cd ${OUTPUT_DIR}/pkg/; for osarch in *; do (cd $$osarch; tar zcvf ../../dist/gotty_${VERSION}_$$osarch.tar.gz ./*); done;
|
|
|
|
shasums:
|
|
cd ${OUTPUT_DIR}/dist; sha256sum * > ./SHA256SUMS
|
|
|
|
release-artifacts: gotty cross_compile targz shasums
|
|
|
|
release:
|
|
ghr -draft ${VERSION} ${OUTPUT_DIR}/dist # -c ${GIT_COMMIT} --delete --prerelease -u sorenisanerd -r gotty ${VERSION}
|
|
|
|
clean:
|
|
rm -fr gotty builds js/dist bindata/static js/node_modules
|