Update copyright dates with scripts/update-copyrights.
[glibc.git] / signal / Makefile
blobffff29fa9be5d4d4aff521d6bea931ae0bae9329
1 # Copyright (C) 1991-2015 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, see
16 # <http://www.gnu.org/licenses/>.
19 # Makefile for signal routines.
21 subdir := signal
23 include ../Makeconfig
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
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
41 tests := tst-signal tst-sigset tst-sigsimple tst-raise tst-sigset2
44 include ../Rules
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