Add generated data to git

This commit is contained in:
Søren L. Hansen 2022-03-28 15:05:51 -07:00
parent dcb153c8a4
commit a9fbc070ac
15 changed files with 2352 additions and 144 deletions

View file

@ -9,50 +9,28 @@ gotty: main.go assets server/*.go webtty/*.go backend/*.go Makefile
docker:
docker build . -t gotty-bash:$(VERSION)
.PHONY: assets
.PHONY: all docker 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
all: gotty
bindata/static:
mkdir -p bindata/static
bindata/static bindata/static/css bindata/static/js:
mkdir -p $@
bindata/static/icon.svg: bindata/static resources/icon.svg
cp resources/icon.svg bindata/static/icon.svg
bindata/static/%: resources/% | bindata/static/css
cp "$<" "$@"
bindata/static/index.html: bindata/static resources/index.html
cp resources/index.html bindata/static/index.html
bindata/static/css/%.css: resources/%.css | bindata/static
cp "$<" "$@"
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
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: js/src/* js/node_modules/webpack
bindata/static/js/gotty.js: js/src/* | js/node_modules/webpack
cd js && \
npx webpack
@ -89,4 +67,4 @@ 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
rm -fr gotty builds js/dist bindata/static js/node_modules