From 00d5a2ed48d999a29708d4750c034bbf1b91de12 Mon Sep 17 00:00:00 2001 From: Vladimir Vukicevic Date: Sat, 9 Sep 2006 23:29:17 -0700 Subject: [win32] Makefile.win32: use correct (/MD) runtime library flag everywhere There was a bad mix of LIBCMT (the static runtime lib) and MSVCRT (the dynamic one) before, because LIBCMT is the default. This specifies /MD everywhere. --- Makefile.win32 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.win32') diff --git a/Makefile.win32 b/Makefile.win32 index 048275dc..25fee716 100644 --- a/Makefile.win32 +++ b/Makefile.win32 @@ -23,7 +23,8 @@ test: cairo @list='$(TEST_SUBDIRS)'; for f in $$list ; do \ echo making all in $$f... ; \ (cd $$f ; make -f Makefile.win32) || exit 1 ; \ - done ; + done + @(cd test ; make -f Makefile.win32 test) html: @(cd test ; make -f Makefile.win32 html) -- cgit v1.2.3