X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=Makefile;h=751802776c2470510d4c7919edbd2c5ebf2838b2;hb=80a149b82831defa1a9f724801daefda0a8c5685;hp=baa06c404bd94f1a2cfe1d7b62c66bc0039d617c;hpb=3980dc92955a62bdfeb9f3b0572bfe64155a125d;p=jquery.git diff --git a/Makefile b/Makefile index baa06c4..7518027 100644 --- a/Makefile +++ b/Makefile @@ -5,22 +5,28 @@ 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/*\ - ${SRC_DIR}/event/*\ - ${SRC_DIR}/fx/*\ - ${SRC_DIR}/ajax/* +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 PLUGINS = ${PLUG_DIR}/button/*\ ${PLUG_DIR}/center/*\ ${PLUG_DIR}/cookie/*\ + ${PLUG_DIR}/dimensions/*\ + ${PLUG_DIR}/metadata/*\ ${PLUG_DIR}/form/*\ ${PLUG_DIR}/greybox/greybox.js\ ${PLUG_DIR}/interface/*\ ${PLUG_DIR}/pager/*\ ${PLUG_DIR}/tablesorter/*\ - ${PLUG_DIR}/tabs/* + ${PLUG_DIR}/tabs/*\ + ${PLUG_DIR}/tooltip/jquery.tooltip.js\ + ${PLUG_DIR}/accordion/jquery.accordion.js MODULES = ${SRC_DIR}/intro.js\ ${BASE_FILES}\ @@ -33,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` @@ -40,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}: @@ -88,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" @@ -107,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" @@ -129,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} @@ -138,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}