diff options
author | Carl Fürstenberg <azatoth@gmail.com> | 2011-03-04 23:33:20 +0100 |
---|---|---|
committer | Carl Fürstenberg <azatoth@gmail.com> | 2011-03-16 01:44:05 +0100 |
commit | 51abb3dc071fd86afd346ec5c340734f5c61064f (patch) | |
tree | 49bdf310aef7f1e3778aaceac0a288bb65dd3456 /Makefile | |
parent | 0cf336d2c95809ef41d94131e629fd1767f054a0 (diff) | |
download | jquery-51abb3dc071fd86afd346ec5c340734f5c61064f.tar.gz jquery-51abb3dc071fd86afd346ec5c340734f5c61064f.zip |
Changing dependice order for minify to prevent reminify
unless jquery.js has been updated, no minification should occur
closes: #8519
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -75,9 +75,9 @@ lint: jquery echo "You must have NodeJS installed in order to test jQuery against JSLint."; \ fi -min: ${JQ_MIN} +min: jquery ${JQ_MIN} -${JQ_MIN}: jquery +${JQ_MIN}: ${JQ} @@if test ! -z ${JS_ENGINE}; then \ echo "Minifying jQuery" ${JQ_MIN}; \ ${COMPILER} ${JQ} > ${JQ_MIN}.tmp; \ |