Commit 513b3a5c by Iwasaki Yudai

Do not compile asset by default

Run make all instead when you recreate server/asset.go.
1 parent 79e13282
Showing with 4 additions and 5 deletions
...@@ -3,16 +3,15 @@ GIT_COMMIT = `git rev-parse HEAD | cut -c1-7` ...@@ -3,16 +3,15 @@ GIT_COMMIT = `git rev-parse HEAD | cut -c1-7`
VERSION = 2.0.0-alpha.2 VERSION = 2.0.0-alpha.2
BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION) -X main.CommitID=$(GIT_COMMIT)" BUILD_OPTIONS = -ldflags "-X main.Version=$(VERSION) -X main.CommitID=$(GIT_COMMIT)"
gotty: main.go server/*.go webtty/*.go backend/*.go Makefile
gotty: server/asset.go main.go server/*.go webtty/*.go backend/*.go Makefile
godep go build ${BUILD_OPTIONS} godep go build ${BUILD_OPTIONS}
asset: server/asset.go asset: bindata/static/js/gotty-bundle.js bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css
server/asset.go: bindata/static/js/gotty-bundle.js bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css
go-bindata -prefix bindata -pkg server -ignore=\\.gitkeep -o server/asset.go bindata/... go-bindata -prefix bindata -pkg server -ignore=\\.gitkeep -o server/asset.go bindata/...
gofmt -w server/asset.go gofmt -w server/asset.go
all: asset gotty
bindata: bindata:
mkdir bindata mkdir bindata
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!