blob: 9d29ff49f327c53c7490452a6fd8f0597e0ec231 [file] [log] [blame]
xf.libdd93d52023-05-12 07:10:14 -07001# Copyright (C) 1991-2016 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#
21subdir := signal
22
23include ../Makeconfig
24
25headers := 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
29routines := 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
41tests := tst-signal tst-sigset tst-sigsimple tst-raise tst-sigset2
42
43
44include ../Rules
45
46CFLAGS-sigpause.c = -fexceptions
47CFLAGS-sigsuspend.c = -fexceptions -fasynchronous-unwind-tables
48CFLAGS-sigtimedwait.c = -fexceptions -fasynchronous-unwind-tables
49CFLAGS-sigwait.c = -fexceptions -fasynchronous-unwind-tables
50CFLAGS-sigwaitinfo.c = -fexceptions -fasynchronous-unwind-tables