aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-09-08 12:42:32 +0000
committerJohn Resig <jeresig@gmail.com>2007-09-08 12:42:32 +0000
commitb4e23b5af0820a66c2e275051f613f3df9a4444d (patch)
tree8045667211e4aa393ee1b6e006dd0c953e77c963 /Makefile
parent13b66c8ba9618242df2c1cc352a2b1d879c36188 (diff)
downloadjquery-b4e23b5af0820a66c2e275051f613f3df9a4444d.tar.gz
jquery-b4e23b5af0820a66c2e275051f613f3df9a4444d.zip
Reorganzing the jQuery source (first phase).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index 751802776..e9a977c19 100644
--- a/Makefile
+++ b/Makefile
@@ -8,11 +8,11 @@ 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
+BASE_FILES = ${SRC_DIR}/core.js\
+ ${SRC_DIR}/selector.js\
+ ${SRC_DIR}/event.js\
+ ${SRC_DIR}/ajax.js\
+ ${SRC_DIR}/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 min pack docs test speed
+all: jquery lite min pack speed
@@echo "jQuery build complete."
${DIST_DIR}:
@@ -110,17 +110,17 @@ test: ${JQ}
@@echo "Building Test Suite"
@@echo " - Making Test Suite Directory:" ${TEST_DIR}
- @@mkdir -p ${TEST_DIR}
+ #@@mkdir -p ${TEST_DIR}
@@echo " - Removing any old tests"
- @@rm -f ${TEST_DIR}/tests/*
+ #@@rm -f ${TEST_DIR}/tests/*
@@echo " - Copying over script files."
- @@cp -fR ${BUILD_DIR}/test/data ${TEST_DIR}/data
- @@cp -f ${BUILD_DIR}/test/index.html ${TEST_DIR}
+ #@@cp -fR ${BUILD_DIR}/test/data ${TEST_DIR}/data
+ #@@cp -f ${BUILD_DIR}/test/index.html ${TEST_DIR}
@@echo " - Compiling Test Cases"
- @@${JAR} ${BUILD_DIR}/test/test.js ${JQ} ${TEST_DIR}
+ #@@${JAR} ${BUILD_DIR}/test/test.js ${JQ} ${TEST_DIR}
@@echo "Test Suite Built"
@@echo