1 |
WGET = wget |
WGET = wget |
2 |
MKDIR = mkdir |
MKDIR = mkdir |
3 |
|
|
4 |
all: tokenizer-files tree-construction-files |
all: \ |
5 |
|
content-type-files \ |
6 |
|
tokenizer-files \ |
7 |
|
tree-construction-files \ |
8 |
|
content-checker-files |
9 |
|
|
10 |
|
content-type-files: content-type-result.txt |
11 |
|
|
12 |
|
content-type-result.txt: always |
13 |
|
cd .. && perl t/ContentType.t &> t/$@ |
14 |
|
|
15 |
tokenizer-files: tokenizer \ |
tokenizer-files: tokenizer \ |
16 |
tokenizer/test1.test tokenizer/test2.test tokenizer/contentModelFlags.test \ |
tokenizer/test1.test tokenizer/test2.test tokenizer/contentModelFlags.test \ |
17 |
|
tokenizer/escapeFlag.test \ |
18 |
|
tokenizer/LICENSE \ |
19 |
tokenizer-result.txt |
tokenizer-result.txt |
20 |
|
|
21 |
tokenizer: |
tokenizer: |
22 |
$(MKDIR) $@ |
$(MKDIR) $@ |
23 |
|
|
24 |
tokenizer/%.test: |
tokenizer/%.test: |
25 |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/tests/$@ |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/testdata/$@ |
26 |
|
|
27 |
|
tokenizer/LICENSE: |
28 |
|
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/LICENSE |
29 |
|
|
30 |
tokenizer-result.txt: always |
tokenizer-result.txt: always |
31 |
cd .. && perl t/HTML-tokenizer.t &> t/$@ |
cd .. && perl t/HTML-tokenizer.t &> t/$@ |
35 |
tree-construction/tests2.dat \ |
tree-construction/tests2.dat \ |
36 |
tree-construction/tests3.dat \ |
tree-construction/tests3.dat \ |
37 |
tree-construction/tests4.dat \ |
tree-construction/tests4.dat \ |
38 |
|
tree-construction/tests5.dat \ |
39 |
|
tree-construction/tests6.dat \ |
40 |
|
tree-construction/LICENSE \ |
41 |
tree-construction-result.txt |
tree-construction-result.txt |
42 |
|
|
43 |
tree-construction: |
tree-construction: |
44 |
$(MKDIR) $@ |
$(MKDIR) $@ |
45 |
|
|
46 |
tree-construction/%.dat: |
tree-construction/%.dat: |
47 |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/tests/$@ |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/testdata/$@ |
48 |
|
|
49 |
|
tree-construction/LICENSE: |
50 |
|
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/LICENSE |
51 |
|
|
52 |
tree-construction-result.txt: always |
tree-construction-result.txt: always |
53 |
cd .. && perl t/HTML-tree.t &> t/$@ |
cd .. && perl t/HTML-tree.t &> t/$@ |
54 |
|
|
55 |
|
content-checker-files: content-checker-result.txt |
56 |
|
|
57 |
|
content-checker-result.txt: always |
58 |
|
cd .. && perl t/ContentChecker.t &> t/$@ |
59 |
|
|
60 |
always: |
always: |
61 |
|
|
62 |
## License: Public Domain. |
## License: Public Domain. |