blob: 7940235d89db8c8bee11fde71be9d827b98700f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
# 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=c:\pthreads
DLLDEST=$(DEVROOT)\DLL
LIBDEST=$(DEVROOT)\DLL
DLLS = pthreadVCE.dll pthreadVSE.dll pthreadVC.dll
OPTIM = /O2
# C++ Exceptions
VCEFLAGS = /GX /TP /D__CLEANUP_CXX
#Structured Exceptions
VSEFLAGS = /D__CLEANUP_SEH
#C cleanup code
VCFLAGS = /D__CLEANUP_C
#CFLAGS = $(OPTIM) /W3 /MT /nologo /Yd /Zi /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H /DTEST_ICE
CFLAGS = $(OPTIM) /W3 /MT /nologo /Yd /Zi /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H
# Agregate modules for inlinability
DLL_OBJS = \
attr.obj \
barrier.obj \
cancel.obj \
cleanup.obj \
condvar.obj \
create.obj \
dll.obj \
errno.obj \
exit.obj \
fork.obj \
global.obj \
misc.obj \
mutex.obj \
nonportable.obj \
private.obj \
rwlock.obj \
sched.obj \
semaphore.obj \
signal.obj \
spin.obj \
sync.obj \
tsd.obj
# Separate modules for minimising the size of statically linked images
SMALL_STATIC_OBJS = \
attr_is_attr.obj \
attr_init.obj \
attr_destroy.obj \
attr_getdetachstate.obj \
attr_setdetachstate.obj \
attr_getstackaddr.obj \
attr_setstackaddr.obj \
attr_getstacksize.obj \
attr_setstacksize.obj \
attr_getscope.obj \
attr_setscope.obj \
barrier_init.obj \
barrier_destroy.obj \
barrier_wait.obj \
barrier_attr_init.obj \
barrier_attr_destroy.obj \
barrier_attr_setpshared.obj \
barrier_attr_getpshared.obj \
cancel_setcancelstate.obj \
cancel_setcanceltype.obj \
cancel_testcancel.obj \
cancel_cancel.obj \
cleanup.obj \
condvar.obj \
create.obj \
dll.obj \
errno.obj \
exit.obj \
fork.obj \
global.obj \
misc.obj \
mutex.obj \
nonportable.obj \
private.obj \
rwlock.obj \
sched.obj \
semaphore_init.obj \
semaphore_destroy.obj \
semaphore_trywait.obj \
semaphore_timedwait.obj \
semaphore_wait.obj \
semaphore_post.obj \
semaphore_postmultiple.obj \
semaphore_getvalue.obj \
semaphore_increase.obj \
semaphore_decrease.obj \
semaphore_open.obj \
semaphore_close.obj \
semaphore_unlink.obj \
signal.obj \
spin.obj \
sync.obj \
tsd.obj
INCL = config.h implement.h semaphore.h pthread.h need_errno.h
ATTR_SRCS = \
attr_is_attr.c \
attr_init.c \
attr_destroy.c \
attr_getdetachstate.c \
attr_setdetachstate.c \
attr_getstackaddr.c \
attr_setstackaddr.c \
attr_getstacksize.c \
attr_setstacksize.c \
attr_getscope.c \
attr_setscope.c
BARRIER_SRCS = \
barrier_init.c \
barrier_destroy.c \
barrier_wait.c \
barrier_attr_init.c \
barrier_attr_destroy.c \
barrier_attr_setpshared.c \
barrier_attr_getpshared.c
CANCEL_SRCS = \
cancel_setcancelstate.c \
cancel_setcanceltype.c \
cancel_testcancel.c \
cancel_cancel.c
SEMAPHORE_SRCS = \
semaphore_init.c \
semaphore_destroy.c \
semaphore_trywait.c \
semaphore_timedwait.c \
semaphore_wait.c \
semaphore_post.c \
semaphore_postmultiple.c \
semaphore_getvalue.c \
semaphore_increase.c \
semaphore_decrease.c \
semaphore_open.c \
semaphore_close.c \
semaphore_unlink.c
all:
@ echo Run one of the following command lines:
@ echo nmake clean VCE (to build the MSVC dll with C++ exception handling)
@ echo nmake clean VSE (to build the MSVC dll with structured exception handling)
@ echo nmake clean VC (to build the MSVC dll with C cleanup code)
auto:
@ nmake clean VCE
@ nmake clean VSE
@ nmake clean VC
VCE:
@ nmake /nologo EHFLAGS="$(VCEFLAGS)" pthreadVCE.dll
VSE:
@ nmake /nologo EHFLAGS="$(VSEFLAGS)" pthreadVSE.dll
VC:
@ nmake /nologo EHFLAGS="$(VCFLAGS)" pthreadVC.dll
realclean: clean
if exist *.dll del *.dll
if exist *.lib del *.lib
clean:
if exist *.obj del *.obj
if exist *.ilk del *.ilk
if exist *.pdb del *.pdb
if exist *.exp del *.exp
if exist *.o del *.o
install: $(DLLS)
copy pthread*.dll $(DLLDEST)
copy pthread*.lib $(LIBDEST)
$(DLLS): $(DLL_OBJS) pthread.def
cl /LD /Zi /nologo $(DLL_OBJS) \
/link /nodefaultlib:libcmt /implib:$*.lib \
msvcrt.lib wsock32.lib /def:pthread.def /out:$@
.c.obj:
cl $(EHFLAGS) $(CFLAGS) -c $<
attr.obj: attr.c $(ATTR_SRCS) $(INCL)
barrier.obj: barrier.c $(BARRIER_SRCS) $(INCL)
cancel.obj: cancel.c $(CANCEL_SRCS) $(INCL)
semaphore.obj: semaphore.c $(SEMAPHORE_SRCS) $(INCL)
|