X-Git-Url: https://jasonwoof.com/gitweb/?p=hexbog.git;a=blobdiff_plain;f=Makefile;h=482d85bc118afa6b2a9b8ec5aa064d31525c3cbe;hp=962d6ffb018953fa8b42d27a0d86b5d9d0f67a6b;hb=fff2ed1a0a156da47c7fa1e9760c8546b9af44fe;hpb=663ebd9e78fa8337afac364b5c2b140ec60cfb8a diff --git a/Makefile b/Makefile index 962d6ff..482d85b 100644 --- a/Makefile +++ b/Makefile @@ -6,19 +6,20 @@ install: all wordlist_compressed.js: compress.coffee wordlist.txt coffee compress.coffee -main.js: main.coffee - coffee -bc main.coffee +index.js: main.coffee + coffee -bc -o .coffee-tmp main.coffee && mv .coffee-tmp/main.js index.js -main_min.js: wordlist_compressed.js main.js - cat /usr/share/javascript/jquery/jquery.min.js main.js | uglifyjs -nc -o $@ +index_min.js: wordlist_compressed.js index.js + cat /usr/share/javascript/jquery/jquery.min.js index.js > $@ + #cat /usr/share/javascript/jquery/jquery.min.js index.js | uglifyjs -nc -o $@ -wordlist_min.js: wordlist_compressed.js main.js +wordlist_min.js: wordlist_compressed.js index.js cat wordlist_compressed.js | uglifyjs -nc -o $@ -style.css: style.less - lessc style.less style.css +index.css: style.less + lessc style.less index.css -index.html: main_min.js wordlist_min.js template.html style.css +index.html: index_min.js wordlist_min.js template.html index.css bash combine.bash template.html > $@ || (rm -f $@; exit 1) index.html.gz: index.html @@ -26,4 +27,4 @@ index.html.gz: index.html clean: - rm -f main.js main_min.js wordlist_compressed.js wordlist_min.js style.css index.html index.html.gz + rm -f index.js index_min.js wordlist_compressed.js wordlist_min.js index.css index.html index.html.gz