X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=Makefile;h=9221e0881b9bb6978c2abee8208070e8c220765b;hb=7afe6dcc0837ac00cea7fbb7de6fb95b745148c2;hp=bf1b2e7b490b1da992c8ae6f4a87a75f6d4435ba;hpb=afaae84a7a56bcbb69cb772d9ea29766ad0a2aa6;p=jquery.git diff --git a/Makefile b/Makefile index bf1b2e7..9221e08 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ BASE_FILES = ${SRC_DIR}/core.js\ ${SRC_DIR}/manipulation.js\ ${SRC_DIR}/css.js\ ${SRC_DIR}/ajax.js\ - ${SRC_DIR}/fx.js\ + ${SRC_DIR}/effects.js\ ${SRC_DIR}/offset.js\ ${SRC_DIR}/dimensions.js @@ -29,7 +29,7 @@ JQ_MIN = ${DIST_DIR}/jquery.min.js JQ_VER = `cat version.txt` VER = sed s/@VERSION/${JQ_VER}/ -MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar +MINJAR = java -jar ${BUILD_DIR}/google-compiler-20091218.jar DATE=`git log -1 | grep Date: | sed 's/[^:]*: *//'` @@ -41,10 +41,10 @@ ${DIST_DIR}: init: @@echo "Grabbing external dependencies..." - @@if test ! -d test/qunit; then git clone git://github.com/jquery/qunit.git test/qunit; fi - @@if test ! -d src/sizzle; then git clone git://github.com/jeresig/sizzle.git src/sizzle; fi - @@cd src/sizzle && git pull origin master &> /dev/null - @@cd test/qunit && git pull origin master &> /dev/null + @@if test ! -d test/qunit/.git; then git clone git://github.com/jquery/qunit.git test/qunit; fi + @@if test ! -d src/sizzle/.git; then git clone git://github.com/jeresig/sizzle.git src/sizzle; fi + @@cd src/sizzle && git pull origin master > /dev/null 2>&1 + @@cd test/qunit && git pull origin master > /dev/null 2>&1 jquery: ${DIST_DIR} selector ${JQ} @@ -57,7 +57,7 @@ ${JQ}: ${MODULES} sed 's/Date:./&'"${DATE}"'/' | \ ${VER} > ${JQ}; -selector: init +selector: @@echo "Building selector code from Sizzle" @@sed '/EXPOSE/r src/sizzle-jquery.js' src/sizzle/sizzle.js > src/selector.js @@ -66,7 +66,8 @@ min: ${JQ_MIN} ${JQ_MIN}: ${JQ} @@echo "Building" ${JQ_MIN} - @@${MINJAR} ${JQ} > ${JQ_MIN} + @@head -15 ${JQ} > ${JQ_MIN} + @@${MINJAR} --js ${JQ} --warning_level QUIET >> ${JQ_MIN} clean: @@echo "Removing Distribution directory:" ${DIST_DIR}