diff options
author | Vladimir Vukicevic <vladimir@pobox.com> | 2006-09-09 23:29:17 -0700 |
---|---|---|
committer | U-CYCLONE\Vladimir Vukicevic <vladimir@cyclone.(none)> | 2006-09-09 23:29:17 -0700 |
commit | 00d5a2ed48d999a29708d4750c034bbf1b91de12 (patch) | |
tree | d36db3348548bd1818089194ec3e088329e5e097 /Makefile.win32 | |
parent | d78fd375d3f99a5bb4a4799ce5d90a2a946a854c (diff) |
[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.
Diffstat (limited to 'Makefile.win32')
-rw-r--r-- | Makefile.win32 | 3 |
1 files changed, 2 insertions, 1 deletions
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) |