init repo

This commit is contained in:
nikolay ivanov
2014-07-05 18:22:49 +00:00
commit a8be6b9e72
17348 changed files with 9229832 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
NODE_PATH ?= ./node_modules
JS_COMPILER = $(NODE_PATH)/uglify-js/bin/uglifyjs
JS_BEAUTIFIER = $(NODE_PATH)/uglify-js/bin/uglifyjs -b -i 2 -nm -ns
all: \
ZeroClipboard.min.js
ZeroClipboard.min.js: Makefile
@rm -f $@
$(JS_COMPILER) ./src/javascript/ZeroClipboard.js > $@
testpage:
git stash
git checkout gh-pages
git checkout master ZeroClipboard.min.js ZeroClipboard.swf
rm -f javascript/ZeroClipboard*
mv ZeroClipboard.* javascripts/
git add .
git commit -a -m "Update demo files to latest changes."
git push
git checkout master
git stash pop