summaryrefslogtreecommitdiff
path: root/Makefile.win32
diff options
context:
space:
mode:
authorVladimir Vukicevic <vladimir@pobox.com>2006-09-09 23:29:17 -0700
committerU-CYCLONE\Vladimir Vukicevic <vladimir@cyclone.(none)>2006-09-09 23:29:17 -0700
commit00d5a2ed48d999a29708d4750c034bbf1b91de12 (patch)
treed36db3348548bd1818089194ec3e088329e5e097 /Makefile.win32
parentd78fd375d3f99a5bb4a4799ce5d90a2a946a854c (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.win323
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)