Fix sigevent namespace (bug 21543).
[platform/upstream/glibc.git] / signal / Makefile
1 # Copyright (C) 1991-2017 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
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.
8
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.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
17
18 #
19 #       Makefile for signal routines.
20 #
21 subdir  := signal
22
23 include ../Makeconfig
24
25 headers := signal.h sys/signal.h \
26            bits/signum.h bits/sigcontext.h bits/sigaction.h \
27            bits/sigevent-consts.h bits/siginfo-consts.h \
28            bits/sigstack.h bits/sigthread.h bits/ss_flags.h \
29            bits/types/__sigset_t.h bits/types/sig_atomic_t.h \
30            bits/types/sigevent_t.h bits/types/siginfo_t.h \
31            bits/types/sigset_t.h bits/types/sigval_t.h \
32            bits/types/stack_t.h bits/types/struct_sigstack.h
33
34 routines        := signal raise killpg \
35                    sigaction sigprocmask kill \
36                    sigpending sigsuspend sigwait \
37                    sigblock sigsetmask sigpause sigvec \
38                    sigstack sigaltstack sigintr \
39                    sigsetops sigempty sigfillset sigaddset sigdelset sigismem \
40                    sigreturn \
41                    siggetmask sysv_signal \
42                    sigisempty sigandset sigorset \
43                    allocrtsig sigtimedwait sigwaitinfo sigqueue \
44                    sighold sigrelse sigignore sigset
45
46 tests           := tst-signal tst-sigset tst-sigsimple tst-raise tst-sigset2
47
48
49 include ../Rules
50
51 CFLAGS-sigpause.c = -fexceptions
52 CFLAGS-sigsuspend.c = -fexceptions -fasynchronous-unwind-tables
53 CFLAGS-sigtimedwait.c = -fexceptions -fasynchronous-unwind-tables
54 CFLAGS-sigwait.c = -fexceptions -fasynchronous-unwind-tables
55 CFLAGS-sigwaitinfo.c = -fexceptions -fasynchronous-unwind-tables
56
57 CFLAGS-sigreturn.c = $(no-stack-protector)