(res_isourserver): Fix cast.
[glibc/pb-stable.git] / linuxthreads / Makefile
blob8ecbd22d56ce458d8c7d1169dcef36bed8feb072
1 # Copyright (C) 1996,1997,1998,1999,2000,2001 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 Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # 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 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 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
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
40 nodelete-yes = -Wl,--enable-new-dtags,-z,nodelete
41 initfirst-yes = -Wl,--enable-new-dtags,-z,initfirst
42 LDFLAGS-pthread.so = $(nodelete-$(have-z-nodelete)) \
43 $(initfirst-$(have-z-initfirst))
45 vpath %.c Examples
47 include ../Makeconfig
49 ifeq ($(build-shared),yes)
50 before-compile := $(objpfx)crti.o
51 extra-objs = crti.o
53 CFLAGS-pt-initfini.s = -g0 -fPIC -fno-inline-functions
54 endif
56 librt-tests = ex10 ex11
57 tests = ex1 ex2 ex3 ex4 ex5 ex6 ex7 ex8 ex9 $(librt-tests) ex12 ex13 joinrace \
58 tststack $(tests-nodelete-$(have-z-nodelete)) ecmutex ex14 ex15 ex16 \
59 ex17
61 ifeq (yes,$(build-shared))
62 tests-nodelete-yes = unload
63 endif
65 include ../Rules
67 extra-B-pthread.so = -B$(common-objpfx)linuxthreads/
69 znodelete-yes = -DHAVE_Z_NODELETE
70 CFLAGS-mutex.c += -D__NO_WEAK_PTHREAD_ALIASES
71 CFLAGS-specific.c += -D__NO_WEAK_PTHREAD_ALIASES
72 CFLAGS-pthread.c += -D__NO_WEAK_PTHREAD_ALIASES $(znodelete-$(have-z-nodelete))
73 CFLAGS-ptfork.c += -D__NO_WEAK_PTHREAD_ALIASES
74 CFLAGS-cancel.c += -D__NO_WEAK_PTHREAD_ALIASES -D_RPC_THREAD_SAFE_
75 CFLAGS-unload.c += -DPREFIX=\"$(objpfx)\"
77 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
78 # This ensures they will load libc.so for needed symbols if loaded by
79 # a statically-linked program that hasn't already loaded it.
80 $(objpfx)libpthread.so: $(common-objpfx)libc.so \
81 $(common-objpfx)libc_nonshared.a
83 # Make sure we link with the thread library.
84 ifeq ($(build-shared),yes)
85 $(addprefix $(objpfx),$(tests)): $(objpfx)libpthread.so
86 $(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.so
87 $(objpfx)unload: $(common-objpfx)dlfcn/libdl.so
88 else
89 $(addprefix $(objpfx),$(tests)): $(objpfx)libpthread.a
90 $(addprefix $(objpfx),$(librt-tests)): $(common-objpfx)rt/librt.a
91 endif
92 ifeq ($(build-bounded),yes)
93 $(tests:%=$(objpfx)%-bp): $(objpfx)libpthread_b.a
94 $(librt-tests:%=$(objpfx)%-bp): $(common-objpfx)rt/librt_b.a
95 endif
97 ifeq ($(build-shared),yes)
98 vpath pt-initfini.c $(full_config_sysdirs)
100 $(objpfx)pt-initfini.s: pt-initfini.c
101 $(compile.c) -S $(CFLAGS-pt-initfini.s) -finhibit-size-directive \
102 $(patsubst -f%,-fno-%,$(exceptions)) -o $@
104 # We only have one kind of startup code files. Static binaries and
105 # shared libraries are build using the PIC version.
106 $(objpfx)crti.S: $(objpfx)pt-initfini.s
107 sed -n -e '1,/@HEADER_ENDS/p' \
108 -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
109 -e '/@TRAILER_BEGINS/,$$p' $< > $@
111 $(objpfx)defs.h: $(objpfx)pt-initfini.s
112 sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
113 $(AWK) -f ../csu/defs.awk > $@
115 $(objpfx)crti.o: $(objpfx)crti.S $(objpfx)defs.h
116 $(compile.S) -g0 $(ASFLAGS-.os) -o $@
118 generated += crti.S defs.h pt-initfini.s
119 endif