Cross Reference: /yui3/src/test/Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 ./js/
api:
./scripts/fix_docs.sh
source: asserts core errors mock reporting api wrap
build:
ant all