Added support for making a minified version of jQuery.
authorJohn Resig <jeresig@gmail.com>
Thu, 15 Feb 2007 15:19:07 +0000 (15:19 +0000)
committerJohn Resig <jeresig@gmail.com>
Thu, 15 Feb 2007 15:19:07 +0000 (15:19 +0000)
Makefile

index 4fc64b9..f3f2688 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,8 +10,9 @@ PLUG_DIR = ../plugins
 BASE_FILES = ${SRC_DIR}/jquery/jquery.js\
        ${SRC_DIR}/selector/selector.js\
        ${SRC_DIR}/event/event.js\
-       ${SRC_DIR}/fx/fx.js\
        ${SRC_DIR}/ajax/ajax.js
+       #${SRC_DIR}/fx/fx.js\
+       #${SRC_DIR}/ajax/ajax.js
 
 PLUGINS = ${PLUG_DIR}/button/*\
        ${PLUG_DIR}/center/*\
@@ -38,6 +39,7 @@ MODULES_WITH_PLUGINS = ${SRC_DIR}/intro.js\
 
 JQ = ${DIST_DIR}/jquery.js
 JQ_LITE = ${DIST_DIR}/jquery.lite.js
+JQ_MIN = ${DIST_DIR}/jquery.min.js
 JQ_PACK = ${DIST_DIR}/jquery.pack.js
 
 JQ_VER = `cat version.txt`
@@ -93,6 +95,17 @@ ${JQ_PACK}: ${JQ}
        @@echo ${JQ_PACK} "Built"
        @@echo
 
+min: ${JQ_MIN}
+
+${JQ_MIN}: ${JQ}
+       @@echo "Building" ${JQ_MIN}
+
+       @@echo " - Compressing using Minifier"
+       @@${JAR} ${BUILD_DIR}/build/min.js ${JQ} ${JQ_MIN}
+
+       @@echo ${JQ_MIN} "Built"
+       @@echo
+
 test: ${JQ}
        @@echo "Building Test Suite"