OUTPUT_DIR = ./builds GIT_COMMIT = `git rev-parse HEAD | cut -c1-7` VERSION = $(shell git describe --tags) BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION)" gotty: main.go assets server/*.go webtty/*.go backend/*.go Makefile go build ${BUILD_OPTIONS} docker: docker build . -t gotty-bash:$(VERSION) .PHONY: assets assets: 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 .PHONY: all all: gotty docker bindata/static: mkdir -p bindata/static bindata/static/icon.svg: bindata/static resources/icon.svg cp resources/icon.svg bindata/static/icon.svg bindata/static/index.html: bindata/static resources/index.html cp resources/index.html bindata/static/index.html bindata/static/manifest.json: bindata/static resources/manifest.json cp resources/manifest.json bindata/static/manifest.json bindata/static/favicon.ico: bindata/static resources/favicon.ico cp resources/favicon.ico bindata/static/favicon.ico bindata/static/icon_192.png: bindata/static resources/icon_192.png cp resources/icon_192.png bindata/static/icon_192.png bindata/static/js: bindata/static mkdir -p bindata/static/js bindata/static/css: bindata/static mkdir -p bindata/static/css bindata/static/css/index.css: bindata/static/css resources/index.css cp resources/index.css bindata/static/css/index.css bindata/static/css/xterm_customize.css: bindata/static/css resources/xterm_customize.css cp resources/xterm_customize.css bindata/static/css/xterm_customize.css bindata/static/css/xterm.css: bindata/static/css js/node_modules/xterm/css/xterm.css cp js/node_modules/xterm/css/xterm.css bindata/static/css/xterm.css js/node_modules/xterm/dist/xterm.css: cd js && \ npm install bindata/static/js/gotty.js: js/src/* js/node_modules/webpack cd js && \ npx webpack 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