summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrpj <rpj>2000-01-07 05:54:32 +0000
committerrpj <rpj>2000-01-07 05:54:32 +0000
commit5cdc411216d113df38e98759c0bdbd8b204e1459 (patch)
treeb5ffd12bb98afacacc0bf9b2e931ad7c1da4ef66 /Makefile
parentedafc80b4a73b5193662438f3485d2d01b8fe82a (diff)
Minor changes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2c91069..b5b10e5 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,8 @@ DEVROOT=e:
DLLDEST=$(DEVROOT)\dll
LIBDEST=$(DEVROOT)\lib
+CLIB=/MD
+
OBJ=attr.obj \
cancel.obj \
cleanup.obj \
@@ -44,10 +46,10 @@ install: all
copy pthread.lib $(LIBDEST)
pthread.dll: $(OBJ) pthread.def
- cl /LDd /Zi /MD $(OBJ) /Fepthread.dll pthread.def
+ cl /LDd /Zi $(CLIB) $(OBJ) /Fepthread.dll pthread.def
.c.obj::
- cl /W3 /MD /nologo /Yd /Zi /I. \
+ cl /W3 $(CLIB) /nologo /Yd /Zi /I. \
/D_WIN32_WINNT=0x400 \
/DSTDCALL=_stdcall \
-c $<