Removing the old speed perf directory (the current one is in the main 'speed' directory).

This commit is contained in:
John Resig 2009-10-22 22:06:20 -04:00
parent 04ab794410
commit c7006d2fa5
6 changed files with 1 additions and 3892 deletions

View file

@ -4,7 +4,6 @@ BUILD_DIR = build
PREFIX = .
TEST_DIR = ${PREFIX}/test
DIST_DIR = ${PREFIX}/dist
SPEED_DIR = ${PREFIX}/speed
BASE_FILES = ${SRC_DIR}/core.js\
${SRC_DIR}/data.js\
@ -35,7 +34,7 @@ MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar
DATE=`svn info . | grep Date: | sed 's/.*: //g'`
REV=`svn info . | grep Rev: | sed 's/.*: //g'`
all: jquery test min speed
all: jquery test min
@@echo "jQuery build complete."
${DIST_DIR}:
@ -73,24 +72,6 @@ test: ${JQ}
git submodule init
git submodule update
speed: ${JQ}
@@echo "Building Speed Test Suite"
@@echo " - Making Speed Test Suite Directory:" ${SPEED_DIR}
@@mkdir -p ${SPEED_DIR}
@@echo " - Copying over script files."
@@cp -f ${BUILD_DIR}/speed/index.html ${SPEED_DIR}
@@cp -f ${BUILD_DIR}/speed/benchmarker.css ${SPEED_DIR}
@@cp -f ${BUILD_DIR}/speed/benchmarker.js ${SPEED_DIR}
@@cp -f ${BUILD_DIR}/speed/jquery-basis.js ${SPEED_DIR}
@@echo "Speed Test Suite Built"
@@echo
clean:
@@echo "Removing Distribution directory:" ${DIST_DIR}
@@rm -rf ${DIST_DIR}
@@echo "Removing Speed Test Suite directory:" ${SPEED_DIR}
@@rm -rf ${SPEED_DIR}