summaryrefslogtreecommitdiff
path: root/imdb-lookup/Makefile
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2014-12-23 01:35:48 +0100
committerYves Fischer <yvesf-git@xapek.org>2014-12-23 01:35:48 +0100
commit94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e (patch)
treebecf09c66ee26dc2dd4f7fd26652fbd296baf828 /imdb-lookup/Makefile
parent82f5bd6a4aff840f21076a8bf47a022d08b1dddf (diff)
downloadscripts-94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e.tar.gz
scripts-94a86bb23d97c2fd1bc38fca73b99e72a7fdfa8e.zip
remove jinja
Diffstat (limited to 'imdb-lookup/Makefile')
-rw-r--r--imdb-lookup/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/imdb-lookup/Makefile b/imdb-lookup/Makefile
new file mode 100644
index 0000000..1bbbcc6
--- /dev/null
+++ b/imdb-lookup/Makefile
@@ -0,0 +1,23 @@
+CLOSURE=~/vcs/v86/closure-compiler/compiler.jar
+
+all: debug release
+
+debug:
+ java -jar $(CLOSURE) \
+ --compilation_level WHITESPACE_ONLY \
+ --formatting PRETTY_PRINT \
+ libs/jquery-1.11.2.js \
+ libs/handlebars-v2.0.0.js \
+ libs/ember-1.9.0.js \
+ libs/ember-data-1.0.0-beta.12.js \
+ > html/index-files/js/libs/all.js
+
+release:
+ java -jar $(CLOSURE) \
+ --compilation_level SIMPLE_OPTIMIZATIONS \
+ libs/jquery-1.11.2.js \
+ libs/handlebars-v2.0.0.js \
+ libs/ember-1.9.0.js \
+ libs/ember-data-1.0.0-beta.12.js \
+ > html/index-files/js/libs/all.min.js
+