Annotation of CSS/CSS2.1-test-suite/Makefile, revision 1.2
1.1 ihickson 1: all:
2: rm -rf tests/*.xht
1.2 ! ihickson 3: rm -rf tests/support
1.1 ihickson 4: find raw-tests -name FILENAMES | xargs -n 1 perl make-proper-tests.pl
1.2 ! ihickson 5: find cooked-tests -name '*.xht' | xargs -n 1 --replace cp -Lv {} tests
! 6: find cooked-tests/* -maxdepth 0 -type d -not -name CVS | xargs -n 1 --replace cp -Lrvu {}/support tests
1.1 ihickson 7: rm -rf tests/support/.unused
1.2 ! ihickson 8: find tests -type d -name CVS | xargs rm -rf
1.1 ihickson 9: rm -rf dist/
10: mkdir dist
11: perl generate.pl tests/*.xht
12: cp -Lrv tests/support dist/support
1.2 ! ihickson 13: ls dist/*.xht | wc -l
Webmaster