1 |
WGET = wget |
WGET = wget |
2 |
|
MKDIR = mkdir |
3 |
|
|
4 |
all: tokenizer-test |
all: tokenizer-files tree-construction-files |
|
|
|
|
tokenizer-test: tokenizer-files |
|
|
|
|
|
|
|
|
tokenizer: |
|
|
mkdir $@ |
|
5 |
|
|
6 |
tokenizer-files: tokenizer \ |
tokenizer-files: tokenizer \ |
7 |
tokenizer/test1.test tokenizer/test2.test tokenizer/contentModelFlags.test |
tokenizer/test1.test tokenizer/test2.test tokenizer/contentModelFlags.test |
8 |
|
|
9 |
|
tokenizer: |
10 |
|
$(MKDIR) $@ |
11 |
|
|
12 |
tokenizer/%.test: |
tokenizer/%.test: |
13 |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/tests/$@ |
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/tests/$@ |
14 |
|
|
15 |
|
tree-construction-files: tree-construction \ |
16 |
|
tree-construction/tests1.dat \ |
17 |
|
tree-construction/tests2.dat \ |
18 |
|
tree-construction/tests3.dat \ |
19 |
|
tree-construction/tests4.dat |
20 |
|
|
21 |
|
tree-construction: |
22 |
|
$(MKDIR) $@ |
23 |
|
|
24 |
|
tree-construction/%.dat: |
25 |
|
$(WGET) -O $@ http://html5lib.googlecode.com/svn/trunk/tests/$@ |
26 |
|
|
27 |
|
## License: Public Domain. |
28 |
|
## $Date$ |