summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrpj <rpj>2000-01-05 14:15:36 +0000
committerrpj <rpj>2000-01-05 14:15:36 +0000
commit84c70cdeda9d11c7a58103ed4707eab83f87c768 (patch)
treebb5e3c6abadd1f3270d8e8484138167f1cb2f410 /Makefile
parent05d85f1763459eeb5d6cfc4a2616f5a09e0115ad (diff)
2000-01-06 Ross Johnson <rpj@special.ise.canberra.edu.au>
* Makefile: Remove inconsistencies in 'cl' args - Erik Hensema <erik.hensema@group2000.nl>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 4b87074..2c91069 100644
--- a/Makefile
+++ b/Makefile
@@ -44,13 +44,10 @@ install: all
copy pthread.lib $(LIBDEST)
pthread.dll: $(OBJ) pthread.def
- cl /LDd /Zi *.obj /Fepthread.dll \
- pthread.def \
- /link /nodefaultlib:libcmt \
- msvcrt.lib
+ cl /LDd /Zi /MD $(OBJ) /Fepthread.dll pthread.def
.c.obj::
- cl /W3 /MT /nologo /Yd /Zi /I. \
+ cl /W3 /MD /nologo /Yd /Zi /I. \
/D_WIN32_WINNT=0x400 \
/DSTDCALL=_stdcall \
-c $<