Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add make command shell #130

Merged
merged 5 commits into from
Sep 15, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions make.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@echo off
::go build option
set TiDBBuildTS=%date:~0,10% %time:~1,7%
for /f "delims=" %%i in ('git rev-parse HEAD') do (set TiDBGitHash=%%i)
set LDFLAGS="-X github.com/pingcap/tidb/util/printer.TiDBBuildTS=%TiDBBuildTS% -X github.com/pingcap/tidb/util/printer.TiDBGitHash=%TiDBGitHash%"

:: godep
go get github.com/tools/godep

@echo [Parser]
go get github.com/qiuyesuifeng/goyacc
go get github.com/qiuyesuifeng/golex
type nul >>temp.XXXXXX & copy temp.XXXXXX +,,
goyacc -o nul -xegen "temp.XXXXXX" parser/parser.y
goyacc -o parser/parser.go -xe "temp.XXXXXX" parser/parser.y
DEL /F /A /Q temp.XXXXXX
DEL /F /A /Q y.output

golex -o parser/scanner.go parser/scanner.l


@echo [Build]
godep go build -ldflags '%LDFLAGS%'

@echo [Install]
godep go install ./...


@echo [Test]
godep go test -cover ./...

::done
@echo [Done]