gotty/Makefile

93 lines
3.0 KiB
Makefile
Raw Normal View History

2015-10-12 02:57:14 +00:00
OUTPUT_DIR = ./builds
2017-08-23 02:15:41 +00:00
GIT_COMMIT = `git rev-parse HEAD | cut -c1-7`
2021-04-22 15:20:08 +00:00
VERSION = $(shell git describe --tags)
BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION)"
2017-08-23 02:15:41 +00:00
gotty: main.go assets server/*.go webtty/*.go backend/*.go Makefile
2020-02-28 06:47:10 +00:00
go build ${BUILD_OPTIONS}
2015-08-16 09:47:23 +00:00
2020-02-28 12:49:19 +00:00
docker:
docker build . -t gotty-bash:$(VERSION)
2021-06-03 20:29:57 +00:00
.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
2017-10-03 06:34:51 +00:00
.PHONY: all
2021-06-03 20:29:57 +00:00
all: gotty docker
bindata/static:
mkdir -p bindata/static
2021-04-25 09:25:41 +00:00
bindata/static/icon.svg: bindata/static resources/icon.svg
cp resources/icon.svg bindata/static/icon.svg
2015-08-23 11:40:18 +00:00
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
2021-04-25 09:25:41 +00:00
bindata/static/favicon.ico: bindata/static resources/favicon.ico
cp resources/favicon.ico bindata/static/favicon.ico
2015-08-30 07:27:40 +00:00
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
2015-08-30 07:27:40 +00:00
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
2021-04-22 16:54:55 +00:00
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
2017-08-22 03:10:52 +00:00
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
2017-10-03 06:34:51 +00:00
js/node_modules/webpack:
cd js && \
npm install
2015-10-12 02:57:14 +00:00
2021-04-25 15:28:08 +00:00
README-options:
2021-04-19 10:20:01 +00:00
./gotty --help | sed '1,/GLOBAL OPTIONS/ d' > options.txt.tmp
2021-04-25 15:28:08 +00:00
sed -f README.md.sed -i README.md
rm options.txt.tmp
2021-04-18 15:07:21 +00:00
2015-10-12 02:57:14 +00:00
tools:
go get github.com/mitchellh/gox
go get github.com/tcnksm/ghr
test:
2016-04-13 07:01:14 +00:00
if [ `go fmt $(go list ./... | grep -v /vendor/) | wc -l` -gt 0 ]; then echo "go fmt error"; exit 1; fi
2021-04-22 19:50:52 +00:00
go test ./...
2015-10-12 02:57:14 +00:00
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}}"
2015-10-12 02:57:14 +00:00
targz:
mkdir -p ${OUTPUT_DIR}/dist
2017-08-23 02:15:41 +00:00
cd ${OUTPUT_DIR}/pkg/; for osarch in *; do (cd $$osarch; tar zcvf ../../dist/gotty_${VERSION}_$$osarch.tar.gz ./*); done;
2015-10-12 02:57:14 +00:00
2015-10-18 02:38:12 +00:00
shasums:
2016-08-11 07:48:03 +00:00
cd ${OUTPUT_DIR}/dist; sha256sum * > ./SHA256SUMS
2015-10-18 02:38:12 +00:00
2021-06-03 20:29:57 +00:00
release-artifacts: gotty cross_compile targz shasums
2021-04-11 06:51:24 +00:00
2015-10-12 02:57:14 +00:00
release:
ghr -draft ${VERSION} ${OUTPUT_DIR}/dist # -c ${GIT_COMMIT} --delete --prerelease -u sorenisanerd -r gotty ${VERSION}
2021-04-11 06:51:24 +00:00
clean:
rm -fr gotty builds js/dist bindata/static