X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=Makefile;h=ac14d7ac69474e2ed4d9d5733160269e9ef79a97;hb=5480cd3fa181a2e105bba3c641ef58723fbd3521;hp=035b1e112a5e94e368b447a4c1dc2a563b66f32b;hpb=6798df54f40b316ce65c4e44e3c0370356956dd7;p=jquery.git diff --git a/Makefile b/Makefile index 035b1e1..ac14d7a 100644 --- a/Makefile +++ b/Makefile @@ -40,10 +40,10 @@ ${DIST_DIR}: init: @@echo "Grabbing external dependencies..." - @@git clone git://github.com/jquery/qunit.git test/qunit - @@git clone git://github.com/jeresig/sizzle.git src/sizzle - @@cd src/sizzle && git pull origin master - @@cd test/qunit && git pull origin master + @@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 jquery: ${DIST_DIR} selector ${JQ} @@ -56,9 +56,6 @@ ${JQ}: ${MODULES} sed 's/Date:./&'"${DATE}"'/' | \ ${VER} > ${JQ}; - @@echo ${JQ} "Built" - @@echo - selector: init @@echo "Building selector code from Sizzle" @@sed '/EXPOSE/r src/sizzle-jquery.js' src/sizzle/sizzle.js > src/selector.js @@ -68,15 +65,14 @@ min: ${JQ_MIN} ${JQ_MIN}: ${JQ} @@echo "Building" ${JQ_MIN} - @@echo " - Compressing using Minifier" @@${MINJAR} ${JQ} > ${JQ_MIN} - @@echo ${JQ_MIN} "Built" - @@echo - clean: @@echo "Removing Distribution directory:" ${DIST_DIR} @@rm -rf ${DIST_DIR} @@echo "Removing built copy of Sizzle" @@rm src/selector.js + + @@echo "Removing cloned directories" + @@rm -rf test/qunit src/sizzle