2.5-18.1
[glibc.git] / rtkaio / Makefile
blob595e71a7332dd030661678fb19b8b5c1008fae56
1 # Copyright (C) 2003, 2004, 2006 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 real-time kaio portion of the library.
22 subdir := rtkaio
24 aio-routines := aio_cancel aio_error aio_fsync aio_misc aio_read \
25 aio_read64 aio_return aio_suspend aio_write \
26 aio_write64 lio_listio lio_listio64 aio_sigqueue \
27 aio_notify
28 clock-routines := get_clockfreq clock_getcpuclockid \
29 clock_getres clock_gettime clock_settime \
30 clock_nanosleep
31 timer-routines := timer_create timer_delete timer_getoverr \
32 timer_gettime timer_settime
33 shm-routines := shm_open shm_unlink
34 mq-routines := mq_open mq_close mq_unlink mq_getattr mq_setattr \
35 mq_notify mq_send mq_receive mq_timedsend \
36 mq_timedreceive
38 librtkaio-routines = $(patsubst %,k%,$(aio-routines)) \
39 $(patsubst %,kaio_%,$(clock-routines) $(timer-routines) \
40 $(shm-routines) $(mq-routines))
42 tests := tst-shm tst-clock tst-clock_nanosleep tst-timer tst-timer2 \
43 tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \
44 tst-aio7 tst-aio8 tst-aio9 tst-aio10 \
45 tst-mqueue1 tst-mqueue2 tst-mqueue3 tst-mqueue4 \
46 tst-mqueue5 tst-mqueue6 tst-mqueue7 tst-mqueue8 tst-mqueue9 \
47 tst-timer3 tst-timer4 tst-timer5 \
48 tst-cpuclock1 tst-cpuclock2 \
49 tst-cputimer1 tst-cputimer2 tst-cputimer3 \
50 tst-clock2 \
51 tst-aiod tst-aiod64 tst-aiod2 tst-aiod3 tst-aiod4 tst-aiod5
53 extra-libs := librtkaio
54 extra-libs-others := $(extra-libs)
56 include $(..)Makeconfig
58 ifeq (yesyes,$(build-shared)$(elf))
59 generated += librt.so$(librt.so-version)
61 $(objpfx)librt.so$(librt.so-version): $(objpfx)librtkaio.so; $(make-link)
62 endif
64 include $(..)Rules
66 CFLAGS-kaio_suspend.c = -fexceptions
67 CFLAGS-kaio_clock_nanosleep.c = -fexceptions -fasynchronous-unwind-tables
68 CFLAGS-kaio_librt-cancellation.c = -fasynchronous-unwind-tables
70 LDFLAGS-rtkaio.so = -Wl,-soname=lib$(libprefix)rt.so$(librt.so-version) \
71 -Wl,--enable-new-dtags,-z,nodelete
72 CPPFLAGS-librtkaio += -DIS_IN_librt=1 -I$(..)rt
74 rpath-dirs := $(patsubst rt,rtkaio,$(rpath-dirs))
76 ifeq (yesyes,$(build-shared)$(elf))
77 others: $(objpfx)librt.so$(librt.so-version)
78 endif
80 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
81 # This ensures they will load libc.so for needed symbols if loaded by
82 # a statically-linked program that hasn't already loaded it.
83 $(objpfx)librtkaio.so: $(common-objpfx)libc.so $(common-objpfx)libc_nonshared.a \
84 $(shared-thread-library) \
85 $(if $(filter yes,$(elf)), $(elfobjdir)/ld.so)
87 ifeq (yes,$(build-shared))
88 $(addprefix $(objpfx),$(tests)): $(objpfx)librtkaio.so $(shared-thread-library)
89 else
90 $(addprefix $(objpfx),$(tests)): $(objpfx)librtkaio.a $(static-thread-library)
91 endif
92 ifeq (yes,$(build-bounded))
93 $(tests:%=$(objpfx)%-bp): $(objpfx)librtkaio_b.a $(bounded-thread-library)
94 endif
96 tst-mqueue7-ARGS = -- $(built-program-cmd)
98 ifeq (yes,$(build-static-nss))
99 otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \
100 $(resolvobjdir)/libresolv.a
101 endif