Makefile revision 33d85edf47749fa345d7b636b9b4b9d0d0386f44
# Path to the "lib" directory of a Handlebars.js git checkout.
YUITest = $(PWD)/../../../yuitest/javascript/src
all: source build
clean:
rm -f ./js/*
asserts:
cp $(YUITest)/asserts/* ./js/
core:
cp $(YUITest)/core/* ./js/
cp $(YUITest)/util/EventTarget.js ./js/
errors:
cp $(YUITest)/errors/* ./js/
mock:
cp $(YUITest)/mock/* ./js/
reporting:
cp $(YUITest)/reporting/* ./js/
cp $(YUITest)/web/Reporter.js ./js/
wrap:
cp ./scripts/* ./js/
source: asserts core errors mock reporting wrap
build:
ant all