blob: 3e96887b5a0eccfb698010e877c1dafc99542a60 (
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
|
include $(top_srcdir)/misc/Makefile.common
SUBDIRS = zlib pthreads
noinst_HEADERS = dirent/dirent.h timer/timer.h
if !HAVE_SETENV
libsetenv = libsetenv.la
endif
if WIN32
noinst_LTLIBRARIES = $(libsetenv) libtimer.la libdirent.la
endif
libsetenv_la_SOURCES = setenv.c
libtimer_la_SOURCES = timer/timer.c
libdirent_la_SOURCES = dirent/dirent.c
EXTRA_DIST = \
pthreads/FAQ \
pthreads/NEWS \
pthreads/TODO \
pthreads/barrier.c \
pthreads/build.tar.gz \
pthreads/cleanup.c \
pthreads/pthread.h \
pthreads/private.c \
pthreads/CONTRIBUTORS \
pthreads/dll.c \
pthreads/README.CV \
pthreads/tsd.c \
pthreads/COPYING.LIB \
pthreads/signal.c \
pthreads/README \
pthreads/condvar.c \
pthreads/sched.c \
pthreads/sched.h \
pthreads/WinCE-PORT \
pthreads/semaphore.c \
pthreads/semaphore.h \
pthreads/README.NONPORTABLE \
pthreads/PROGRESS \
pthreads/errno.c \
pthreads/need_errno.h \
pthreads/global.c \
pthreads/cancel.c \
pthreads/attr.c \
pthreads/config.h \
pthreads/nonportable.c \
pthreads/exit.c \
pthreads/fork.c \
pthreads/README.WinCE \
pthreads/config.h.in \
pthreads/mutex.c \
pthreads/misc.c \
pthreads/pthread.def \
pthreads/pthread.dsp \
pthreads/pthread.dsw \
pthreads/pthread.ncb \
pthreads/pthread.opt \
pthreads/spin.c \
pthreads/sync.c \
pthreads/rwlock.c \
pthreads/ANNOUNCE \
pthreads/MAINTAINERS \
pthreads/create.c \
pthreads/ChangeLog \
pthreads/implement.h \
pthreads/acconfig.h
|