aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2006-10-26 23:11:34 +0000
committerYehuda Katz <wycats@gmail.com>2006-10-26 23:11:34 +0000
commit3980dc92955a62bdfeb9f3b0572bfe64155a125d (patch)
treeafd03474c44e80f39525d5200f2b4fc314e60598 /Makefile
parentfce3c7f74bea447340645b9929c46797b9779f8c (diff)
downloadjquery-3980dc92955a62bdfeb9f3b0572bfe64155a125d.tar.gz
jquery-3980dc92955a62bdfeb9f3b0572bfe64155a125d.zip
Added comments to various plugins and added make and ant options to make docs with plugins
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile33
1 files changed, 30 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a906d0bf8..baa06c404 100644
--- a/Makefile
+++ b/Makefile
@@ -5,12 +5,30 @@ PREFIX = .
DOCS_DIR = ${PREFIX}/docs
TEST_DIR = ${PREFIX}/test
DIST_DIR = ${PREFIX}/dist
+PLUG_DIR = ../plugins
-MODULES = ${SRC_DIR}/intro.js\
- ${SRC_DIR}/jquery/*\
+BASE_FILES = ${SRC_DIR}/jquery/*\
${SRC_DIR}/event/*\
${SRC_DIR}/fx/*\
- ${SRC_DIR}/ajax/*\
+ ${SRC_DIR}/ajax/*
+
+PLUGINS = ${PLUG_DIR}/button/*\
+ ${PLUG_DIR}/center/*\
+ ${PLUG_DIR}/cookie/*\
+ ${PLUG_DIR}/form/*\
+ ${PLUG_DIR}/greybox/greybox.js\
+ ${PLUG_DIR}/interface/*\
+ ${PLUG_DIR}/pager/*\
+ ${PLUG_DIR}/tablesorter/*\
+ ${PLUG_DIR}/tabs/*
+
+MODULES = ${SRC_DIR}/intro.js\
+ ${BASE_FILES}\
+ ${SRC_DIR}/outro.js
+
+MODULES_WITH_PLUGINS = ${SRC_DIR}/intro.js\
+ ${BASE_FILES}\
+ ${PLUGINS}\
${SRC_DIR}/outro.js
JQ = ${DIST_DIR}/jquery.js
@@ -39,6 +57,15 @@ ${JQ}: ${MODULES}
@@echo ${JQ} "Built"
@@echo
+with_plugins: ${MODULES_WITH_PLUGINS}
+ @@echo "Building" ${JQ}
+
+ @@mkdir -p ${DIST_DIR}
+ @@cat ${MODULES_WITH_PLUGINS} | ${VER} > ${JQ};
+
+ @@echo ${JQ} "Built"
+ @@echo
+
lite: ${JQ_LITE}
${JQ_LITE}: ${JQ}