diff options
author | rpj <rpj> | 1998-12-06 03:47:03 +0000 |
---|---|---|
committer | rpj <rpj> | 1998-12-06 03:47:03 +0000 |
commit | e17bb90f17f0530bc74a3e463b8ea9eedfaae01f (patch) | |
tree | b31c98ac4be3194f015bbb0bca46143169083988 /build.bat | |
parent | 02e7959e7ed71198a45a8fceab0076b352430764 (diff) |
Sun Dec 6 21:54:35 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* build.bat: New DOS script to compile and link a pthreads app
using Microsoft's CL compiler linker.
* buildlib.bat: New DOS script to compile all the object files
and create pthread.lib and pthread.dll using Microsoft's CL
compiler linker.
Diffstat (limited to 'build.bat')
-rw-r--r-- | build.bat | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..449d6e2 --- /dev/null +++ b/build.bat @@ -0,0 +1,2 @@ +cl /W3 /MT /nologo /Yd /Zi -I. -D_WIN32_WINNT=0x400 -DSTDCALL=_stdcall -c %1.c +cl /Feaout.exe /Zi %1.obj pthread.lib |