Update.
[glibc.git] / linuxthreads / Makefile
blob9c5cd8f1bf7eb52db0a06996fc592e6c90fab5c5
1 # Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
20 # Sub-makefile for linuxthreads portion of the library.
22 subdir := linuxthreads
24 linuxthreads-version := $(shell sed -n 's/^.*$(subdir)-\([0-9.]*\).*$$/\1/p' \
25 Banner)
27 headers := pthread.h semaphore.h
28 distribute := internals.h queue.h restart.h spinlock.h tst-signal.sh
30 routines := weaks no-tsd
32 extra-libs := libpthread
33 extra-libs-others := $(extra-libs)
35 libpthread-routines := attr cancel condvar join manager mutex ptfork \
36 ptlongjmp pthread signals specific errno lockfile \
37 semaphore spinlock wrapsyscall rwlock pt-machine \
38 oldsemaphore events getcpuclockid pspinlock barrier \
39 ptclock_gettime ptclock_settime sighandler
41 nodelete-yes = -Wl,--enable-new-dtags,-z,nodelete
42 initfirst-yes = -Wl,--enable-new-dtags,-z,initfirst
43 LDFLAGS-pthread.so = $(nodelete-$(have-z-nodelete)) \
44 $(initfirst-$(have-z-initfirst))
46 vpath %.c Examples
48 tst-cancel-ARGS = "$(objpfx)"
49 CFLAGS-tst-cancel.c = -fno-inline -fno-inline-functions
51 include ../Makeconfig
53 ifeq ($(build-shared),yes)
54 extra-objs += crti.o
55 omit-deps += crti
57 CFLAGS-pt-initfini.s = -g0 -fPIC -fno-inline-functions
58 endif
60 librt-tests = ex10 ex11
61 tests = ex1 ex2 ex3 ex4 ex5 ex6 ex7 ex8 ex9 $(librt-tests) ex12 ex13 joinrace \
62 tststack $(tests-nodelete-$(have-z-nodelete)) ecmutex ex14 ex15 ex16 \
63 ex17 ex18 tst-cancel tst-context bug-sleep
64 test-srcs = tst-signal
66 ifeq ($(build-static),yes)
67 tests += tststatic
68 tests-static += tststatic
69 endif
71 ifeq (yes,$(build-shared))
72 tests-nodelete-yes = unload
73 endif
75 include ../Rules
77 extra-B-pthread.so = -B$(common-objpfx)linuxthreads/
78 $(objpfx)libpthread.so: $(objpfx)crti.o
79 $(objpfx)libpthread.so: +preinit += $(objpfx)crti.o
81 znodelete-yes = -DHAVE_Z_NODELETE
82 CFLAGS-mutex.c += -D__NO_WEAK_PTHREAD_ALIASES
83 CFLAGS-specific.c += -D__NO_WEAK_PTHREAD_ALIASES
84 CFLAGS-pthread.c += -D__NO_WEAK_PTHREAD_ALIASES $(znodelete-$(have-z-nodelete))
85 CFLAGS-ptfork.c += -D__NO_WEAK_PTHREAD_ALIASES
86 CFLAGS-cancel.c += -D__NO_WEAK_PTHREAD_ALIASES -D_RPC_THREAD_SAFE_
87 CFLAGS-unload.c += -DPREFIX=\"$(objpfx)\"
88 CFLAGS-sighandler.c += $(exceptions)
90 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
91 # This ensures they will load libc.so for needed symbols if loaded by
92 # a statically-linked program that hasn't already loaded it.
93 $(objpfx)libpthread.so: $(common-objpfx)libc.so \
94 $(common-objpfx)libc_nonshared.a
96 # Make sure we link with the thread library.
97 ifeq ($(build-shared),yes)
98 $(addprefix $(objpfx), \
99 $(filter-out $(tests-static), \
100 $(tests) $(test-srcs))): $(objpfx)libpthread.so
101 $(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.so
102 $(objpfx)unload: $(common-objpfx)dlfcn/libdl.so
103 else
104 $(addprefix $(objpfx),$(tests) $(test-srcs)): $(objpfx)libpthread.a
105 $(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.a
106 endif
107 ifeq ($(build-bounded),yes)
108 $(tests:%=$(objpfx)%-bp): $(objpfx)libpthread_b.a
109 $(librt-tests:%=$(objpfx)%-bp): $(common-objpfx)rt/librt_b.a
110 endif
112 ifeq ($(build-static),yes)
113 $(addprefix $(objpfx), $(tests-static)): $(objpfx)libpthread.a
114 endif
116 ifeq ($(build-shared),yes)
117 vpath pt-initfini.c $(full_config_sysdirs)
119 $(objpfx)pt-initfini.s: pt-initfini.c
120 $(compile.c) -S $(CFLAGS-pt-initfini.s) -finhibit-size-directive \
121 $(patsubst -f%,-fno-%,$(exceptions)) -o $@
123 # We only have one kind of startup code files. Static binaries and
124 # shared libraries are build using the PIC version.
125 $(objpfx)crti.S: $(objpfx)pt-initfini.s
126 sed -n -e '1,/@HEADER_ENDS/p' \
127 -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
128 -e '/@TRAILER_BEGINS/,$$p' $< > $@
130 $(objpfx)defs.h: $(objpfx)pt-initfini.s
131 sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
132 $(AWK) -f ../csu/defs.awk > $@
134 $(objpfx)crti.o: $(objpfx)crti.S $(objpfx)defs.h
135 $(compile.S) -g0 $(ASFLAGS-.os) -o $@
137 generated += crti.S defs.h pt-initfini.s
138 endif
140 ifeq (yes,$(build-static-nss))
141 otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
142 $(resolvobjdir)/libresolv.a
143 endif
145 ifeq (no,$(cross-compiling))
146 ifeq (yes,$(build-shared))
147 tests: $(objpfx)tst-signal.out
148 $(objpfx)tst-signal.out: tst-signal.sh $(objpfx)tst-signal
149 $(SHELL) -e $< $(common-objpfx) > $@
150 endif
151 endif