]> git.ipfire.org Git - thirdparty/glibc.git/blob - signal/Makefile
427c7a1e6fca27469cc7ff739fff1553f2887c17
[thirdparty/glibc.git] / signal / Makefile
1 # Copyright (C) 1991-2014 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 bits/signum.h bits/sigcontext.h \
26 bits/sigaction.h bits/sigset.h bits/siginfo.h bits/sigstack.h \
27 bits/sigthread.h
28
29 routines := signal raise killpg \
30 sigaction sigprocmask kill \
31 sigpending sigsuspend sigwait \
32 sigblock sigsetmask sigpause sigvec \
33 sigstack sigaltstack sigintr \
34 sigsetops sigempty sigfillset sigaddset sigdelset sigismem \
35 sigreturn \
36 siggetmask sysv_signal \
37 sigisempty sigandset sigorset \
38 allocrtsig sigtimedwait sigwaitinfo sigqueue \
39 sighold sigrelse sigignore sigset
40
41 tests := tst-signal tst-sigset tst-sigsimple tst-raise tst-sigset2
42
43
44 include ../Rules
45
46 CFLAGS-sigpause.c = -fexceptions
47 CFLAGS-sigsuspend.c = -fexceptions -fasynchronous-unwind-tables
48 CFLAGS-sigtimedwait.c = -fexceptions -fasynchronous-unwind-tables
49 CFLAGS-sigwait.c = -fexceptions -fasynchronous-unwind-tables
50 CFLAGS-sigwaitinfo.c = -fexceptions -fasynchronous-unwind-tables