1
0
Fork 0
easejs/Makefile

55 lines
1.2 KiB
Makefile
Raw Normal View History

2010-11-10 19:38:06 -05:00
PATH_BUILD=./build
PATH_TOOLS=./tools
PATH_COMBINE_OUTPUT=${PATH_BUILD}/ease.js
PATH_COMBINE_OUTPUT_FULL=${PATH_BUILD}/ease-full.js
2010-12-28 13:21:41 -05:00
PATH_BROWSER_TEST=${PATH_TOOLS}/browser-test.html
2011-03-08 00:06:34 -05:00
PATH_DOC=./doc
COMBINE=${PATH_TOOLS}/combine
2011-03-08 00:06:34 -05:00
.PHONY: test doc
2010-11-10 19:38:06 -05:00
default: combine
2011-03-08 00:06:34 -05:00
all: combine doc
# create build dir
mkbuild:
mkdir -p ${PATH_BUILD}
# combine all modules into easily redistributable ease.js file (intended for
# browser)
combine: mkbuild
${COMBINE} > ${PATH_COMBINE_OUTPUT}
INC_TEST=1 ${COMBINE} > ${PATH_COMBINE_OUTPUT_FULL}
2010-12-28 13:21:41 -05:00
cp ${PATH_BROWSER_TEST} ${PATH_BUILD}
# run tests
test: default
2010-11-10 21:00:38 -05:00
for test in `find ./test -name 'test-*.js'`; do \
node $${test}; \
2010-12-20 22:29:10 -05:00
done; \
for test in `find ./test -regex '.*/test-[^\.]*'`; do \
./$$test; \
done;
2011-03-08 00:06:34 -05:00
# generate texinfo documentation (twice to generate TOC), then remove the extra
# files that were generaetd
doc:
pdftex -output-directory "${PATH_DOC}" ${PATH_DOC}/manual.texi;
pdftex -output-directory "${PATH_DOC}" ${PATH_DOC}/manual.texi;
find ${PATH_DOC} -type f \
! -name '*.texi' -a \
! -name '.*' -a \
! -name '*.pdf' \
| xargs rm
mv ${PATH_DOC}/*.pdf ${PATH_BUILD}/
# clean up build dir
2011-03-08 00:06:34 -05:00
clean: clean-doc
rm -rf ${PATH_BUILD}
2011-03-08 00:06:34 -05:00