diff options
author | Andrea Canciani <ranma42@gmail.com> | 2010-09-26 11:05:35 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2010-10-07 23:09:13 +0200 |
commit | 425e68590b94d4701d81b73ef2232ea76dd97f48 (patch) | |
tree | f81a98400abcec4764a9df9ad2676472500f201c /test/Makefile.win32 | |
parent | f29e7d155f3a2ee75daf63719460348ea2ca0f76 (diff) |
test: Remove old html infrastructure
The new dynamic html page supersedes the old make-generated static
html page.
Diffstat (limited to 'test/Makefile.win32')
-rw-r--r-- | test/Makefile.win32 | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/test/Makefile.win32 b/test/Makefile.win32 index b45617bd9..8d8f1f8b8 100644 --- a/test/Makefile.win32 +++ b/test/Makefile.win32 @@ -33,20 +33,9 @@ cairo-test-suite.exe: $(OBJECTS) ./pdiff/pdiff.lib ../boilerplate/$(CFG)/boiler. ../boilerplate/$(CFG)/boiler.lib: (cd ../boilerplate ; $(MAKE) -f Makefile.win32) -.PHONY: check test html +.PHONY: check test check: cairo-test-suite.exe ./cairo-test-suite.exe -# define gen-html so that both 'test' and 'html' targets -# can generate html while having different dependencies -define gen-html -@echo Creating index.html... -@perl make-html.pl > index.html -endef - test: check - $(gen-html) - -html: - $(gen-html) |