1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-08-02 04:10:39 +00:00

adding javascript assets

This commit is contained in:
Vincent Batts 2013-08-05 18:25:05 -04:00
parent 6fb572915f
commit 361f461810
7 changed files with 17940 additions and 0 deletions

View file

@ -1,6 +1,21 @@
PKG := assets
all: \
bootstrap.css.go \
jquery.js.go \
jqud.js.go \
bootstrap.js.go
bootstrap.css.go: bootstrap.css
go-bindata -pkg=$(PKG) -func="BootstrapCss" -out=$@ $^
jquery.js.go: jquery-2.0.3.js
go-bindata -pkg=$(PKG) -func="JqueryJs" -out=$@ $^
jqud.js.go: jqud.js
go-bindata -pkg=$(PKG) -func="TagCloudJs" -out=$@ $^
bootstrap.js.go: bootstrap.js
go-bindata -pkg=$(PKG) -func="BootstrapJs" -out=$@ $^