mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 03:15:05 +08:00
17 lines
382 B
Makefile
17 lines
382 B
Makefile
default:
|
|
echo "Installing dependencies..."
|
|
go get -u github.com/go-bindata/go-bindata/...
|
|
echo "Build static files..."
|
|
make asset
|
|
echo "Build current platform executable..."
|
|
go build .
|
|
|
|
|
|
asset:
|
|
cd templates; go-bindata -o assets.go resource.html index.html search.html js/... css/... fonts/... img/...
|
|
mv templates/assets.go ./
|
|
|
|
dev:
|
|
go-bindata -o assets.go index.html
|
|
|