summaryrefslogtreecommitdiff
path: root/Makefile.vc
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.vc')
-rw-r--r--Makefile.vc58
1 files changed, 0 insertions, 58 deletions
diff --git a/Makefile.vc b/Makefile.vc
deleted file mode 100644
index b5b10e5..0000000
--- a/Makefile.vc
+++ /dev/null
@@ -1,58 +0,0 @@
-
-# This makefile is compatible with MS nmake and can be used as a
-# replacement for buildlib.bat. I've changed the target from an ordinary dll
-# (/LD) to a debugging dll (/LDd).
-#
-# The variables $DLLDEST and $LIBDEST hold the destination directories for the
-# dll and the lib, respectively. Probably all that needs to change is $DEVROOT.
-
-DEVROOT=e:
-
-DLLDEST=$(DEVROOT)\dll
-LIBDEST=$(DEVROOT)\lib
-
-CLIB=/MD
-
-OBJ=attr.obj \
- cancel.obj \
- cleanup.obj \
- condvar.obj \
- create.obj \
- dll.obj \
- errno.obj \
- exit.obj \
- fork.obj \
- global.obj \
- misc.obj \
- mutex.obj \
- private.obj \
- rwlock.obj \
- sched.obj \
- semaphore.obj \
- signal.obj \
- sync.obj \
- tsd.obj
-
-all: pthread.dll
-
-clean:
- del pthread.dll \
- pthread.lib \
- *.obj
-
-
-install: all
- copy pthread.dll $(DLLDEST)
- copy pthread.lib $(LIBDEST)
-
-pthread.dll: $(OBJ) pthread.def
- cl /LDd /Zi $(CLIB) $(OBJ) /Fepthread.dll pthread.def
-
-.c.obj::
- cl /W3 $(CLIB) /nologo /Yd /Zi /I. \
- /D_WIN32_WINNT=0x400 \
- /DSTDCALL=_stdcall \
- -c $<
-
-$(OBJ):
-