--- pthreads-snap-2003-09-18\Makefile.bak 2003-08-14 10:53:18.000000000 +0200 +++ pthreads-snap-2003-09-18\Makefile 2005-11-10 16:18:52.109375000 +0100 @@ -5,10 +5,12 @@ # The variables $DLLDEST and $LIBDEST hold the destination directories for the # dll and the lib, respectively. Probably all that needs to change is $DEVROOT. +PREFIX=c:\apps\vc8 DEVROOT=c:\pthreads -DLLDEST=$(DEVROOT)\DLL -LIBDEST=$(DEVROOT)\DLL +DLLDEST=$(PREFIX)\bin +LIBDEST=$(PREFIX)\lib +INCDEST=$(PREFIX)\include DLLS = pthreadVCE.dll pthreadVSE.dll pthreadVC.dll INLINED_STAMPS = pthreadVCE.stamp pthreadVSE.stamp pthreadVC.stamp @@ -398,6 +400,8 @@ install: $(DLLS) copy pthread*.dll $(DLLDEST) copy pthread*.lib $(LIBDEST) + copy pthread.h $(INCDEST) + copy sched.h $(INCDEST) $(DLLS): $(DLL_OBJS) cl /LD /Zi /nologo $(DLL_OBJS) \