diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-06-14 16:30:01 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-06-14 16:46:32 +0200 |
commit | 0cbe3d1020fae0fdd601f48ca8c67861390c78ad (patch) | |
tree | 8c1a2593c6fa0bd6e18abcd1234e9a853cb1be6e /test | |
parent | 510f0f391cf07a6357468493a3b9aacbd0069a8d (diff) |
test: Update generation of constructors on win32
51bd27afa147f78c8f4f3778cee725b6444e7eb0 removed
make-cairo-test-constructors.c but did not update the win32 Makefiles
accordingly.
cairo-test-constructors.c is now generated by a make target which runs
make-cairo-test-constructors.sh.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.win32 | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/Makefile.win32 b/test/Makefile.win32 index 8d8f1f8b..0d9a15ce 100644 --- a/test/Makefile.win32 +++ b/test/Makefile.win32 @@ -14,11 +14,8 @@ TESTCORE_SOURCES = \ all: cairo-test-suite.exe -make-cairo-test-constructors.exe: $(CFG)/make-cairo-test-constructors.obj - $(CC) $(OPT) $(MS_MDFLAGS) $(CFG)/make-cairo-test-constructors.obj -Fe"$@" -link $(LDFLAGS) user32.lib /NODEFAULTLIB:library - -cairo-test-constructors.c: $(test_sources) make-cairo-test-constructors.exe - ./make-cairo-test-constructors.exe $(test_sources) > $@ +cairo-test-constructors.c: Makefile.sources Makefile.win32 $(test_sources) make-cairo-test-constructors.sh + sh ./make-cairo-test-constructors.sh $(test_sources) > $@ SOURCES = $(cairo_test_suite_sources) $(test_sources) cairo-test-constructors.c |