X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=Makefile;h=751802776c2470510d4c7919edbd2c5ebf2838b2;hb=80a149b82831defa1a9f724801daefda0a8c5685;hp=f3f2688932f41740cb47b0a5d678053f42fba99a;hpb=4434b5ae65bd3ecb9ea5b7e6a56d5b714748de90;p=jquery.git diff --git a/Makefile b/Makefile index f3f2688..7518027 100644 --- a/Makefile +++ b/Makefile @@ -5,14 +5,14 @@ PREFIX = . DOCS_DIR = ${PREFIX}/docs TEST_DIR = ${PREFIX}/test DIST_DIR = ${PREFIX}/dist +SPEED_DIR = ${PREFIX}/speed PLUG_DIR = ../plugins BASE_FILES = ${SRC_DIR}/jquery/jquery.js\ ${SRC_DIR}/selector/selector.js\ ${SRC_DIR}/event/event.js\ - ${SRC_DIR}/ajax/ajax.js - #${SRC_DIR}/fx/fx.js\ - #${SRC_DIR}/ajax/ajax.js + ${SRC_DIR}/ajax/ajax.js\ + ${SRC_DIR}/fx/fx.js PLUGINS = ${PLUG_DIR}/button/*\ ${PLUG_DIR}/center/*\ @@ -47,7 +47,7 @@ VER = sed s/@VERSION/${JQ_VER}/ JAR = java -jar ${BUILD_DIR}/js.jar -all: jquery lite pack docs test +all: jquery lite min pack docs test speed @@echo "jQuery build complete." ${DIST_DIR}: @@ -125,6 +125,13 @@ test: ${JQ} @@echo "Test Suite Built" @@echo +runtest: ${JQ} test + @@echo "Running Automated Test Suite" + @@${JAR} ${BUILD_DIR}/runtest/test.js + + @@echo "Test Suite Finished" + @@echo + docs: ${JQ} @@echo "Building Documentation" @@ -147,6 +154,21 @@ docs: ${JQ} @@echo "Documentation Built" @@echo +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-1.1.2.js ${SPEED_DIR} + + @@echo "Speed Test Suite Built" + @@echo + clean: @@echo "Removing Distribution directory:" ${DIST_DIR} @@rm -rf ${DIST_DIR} @@ -156,3 +178,6 @@ clean: @@echo "Removing Documentation directory:" ${DOCS_DIR} @@rm -rf ${DOCS_DIR} + + @@echo "Removing Speed Test Suite directory:" ${SPEED_DIR} + @@rm -rf ${SPEED_DIR}