Makefile revision 02adbfa608c27f6582f8c989f81cbf054fba8a72
# 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