Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
50 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,74 @@ | ||
SRC_DIR = src | ||
BUILD_DIR = build | ||
|
||
DOCS_DIR = docs | ||
DIST_DIR = dist | ||
PREFIX = . | ||
DOCS_DIR = ${PREFIX}/docs | ||
TEST_DIR = ${PREFIX}/test | ||
DIST_DIR = ${PREFIX}/dist | ||
|
||
MODULES = jquery event fx ajax | ||
JQ = ${DIST_DIR}/jquery.js | ||
JQ_LITE = ${DIST_DIR}/jquery.lite.js | ||
JQ_PACK = ${DIST_DIR}/jquery.pack.js | ||
|
||
all: jquery lite pack docs | ||
@@echo "jQuery build complete." | ||
|
||
${DIST_DIR}: | ||
mkdir -p ${DIST_DIR} | ||
@@mkdir -p ${DIST_DIR} | ||
|
||
jquery: ${DIST_DIR} ${JQ} | ||
|
||
${JQ}: | ||
@@echo "Building" ${JQ}; | ||
@@echo "Building" ${JQ} | ||
|
||
@@for f in ${MODULES}; do \ | ||
echo "Adding module:" $$f;\ | ||
echo " - Adding module:" $$f;\ | ||
cat ${SRC_DIR}/$$f/$$f.js >> ${JQ};\ | ||
done | ||
|
||
@@echo ${JQ} "built."; | ||
@@echo ${JQ} "built." | ||
@@echo | ||
|
||
lite: ${JQ_LITE} | ||
|
||
${JQ_LITE}: ${JQ} | ||
@@echo "Building" ${JQ_LITE}; | ||
java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/lite.js ${JQ} ${JQ_LITE} | ||
@@echo ${JQ_LITE} "built."; | ||
${JQ_LITE}: jquery | ||
@@echo "Building" ${JQ_LITE} | ||
@@echo " - Removing ScriptDoc from" ${JQ} | ||
@@java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/lite.js ${JQ} ${JQ_LITE} | ||
@@echo ${JQ_LITE} "built." | ||
@@echo | ||
|
||
pack: ${JQ_PACK} | ||
|
||
${JQ_PACK}: ${JQ} | ||
@@echo "Building" ${JQ_PACK}; | ||
java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/build.js ${JQ} ${JQ_PACK} | ||
@@echo ${JQ_PACK} "built."; | ||
${JQ_PACK}: jquery | ||
@@echo "Building" ${JQ_PACK} | ||
@@echo " - Compressing using Packer" | ||
@@java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/build.js ${JQ} ${JQ_PACK} | ||
@@echo ${JQ_PACK} "built." | ||
@@echo | ||
|
||
test: | ||
test: ${JQ} | ||
|
||
docs: ${JQ} | ||
@@echo "Building Documentation"; | ||
java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/docs.js ${JQ} ${DOCS_DIR} | ||
@@echo "Documentation built."; | ||
@@echo "Building Documentation" | ||
|
||
@@echo " - Making Documentation Directory:" ${DOCS_DIR} | ||
@@mkdir -p ${DOCS_DIR} | ||
@@mkdir -p ${DOCS_DIR}/data | ||
|
||
@@echo " - Copying over script files." | ||
@@cp -R ${BUILD_DIR}/docs/js ${DOCS_DIR}/js | ||
|
||
@@echo " - Copying over style files." | ||
@@cp -R ${BUILD_DIR}/docs/style ${DOCS_DIR}/style | ||
|
||
@@echo " - Extracting ScriptDoc from" ${JQ} | ||
@@java -jar ${BUILD_DIR}/js.jar ${BUILD_DIR}/docs.js ${JQ} ${DOCS_DIR} | ||
|
||
@@echo "Documentation built." | ||
@@echo | ||
|
||
clean: | ||
rm -rf ${DIST_DIR} | ||
rm -f ${DOCS_DIR}/index.xml | ||
rm -f ${DOCS_DIR}/data/* | ||
@@rm -rf ${DIST_DIR} | ||
@@rm -rf ${DOCS_DIR} |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
load("build/js/writeFile.js"); | ||
|
||
var blockMatch = /\s*\/\*\*\s*((.|\n)*?)\n*\*\/\s*/g; | ||
var f = readFile(arguments[0]).replace( blockMatch, "" ); | ||
|
||
writeFile( arguments[1], f ); |