summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Makefile7
-rw-r--r--Makefile.vc7
3 files changed, 9 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index e0d0b3e..4c23493 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-06 Ross Johnson <rpj@special.ise.canberra.edu.au>
+
+ * Makefile: Remove inconsistencies in 'cl' args
+ - Erik Hensema <erik.hensema@group2000.nl>
+
2000-01-04 Ross Johnson <rpj@special.ise.canberra.edu.au>
* private.c (_pthread_get_exception_services_code): New; returns
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 $<
diff --git a/Makefile.vc b/Makefile.vc
index 4b87074..2c91069 100644
--- a/Makefile.vc
+++ b/Makefile.vc
@@ -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 $<