lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | # Makefile for uClibc |
| 2 | # |
| 3 | # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org> |
| 4 | # |
| 5 | # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. |
| 6 | # |
| 7 | |
| 8 | subdirs += libc/signal |
| 9 | |
| 10 | CSRC-y := allocrtsig.c killpg.c raise.c sigaction.c sigaddset.c sigandset.c \ |
| 11 | sigblock.c sigdelset.c sigempty.c sigfillset.c siggetmask.c \ |
| 12 | sigisempty.c sigismem.c sigjmp.c signal.c \ |
| 13 | sigorset.c sigsetmask.c sigsetops.c sigwait.c |
| 14 | CSRC-$(UCLIBC_HAS_OBSOLETE_BSD_SIGNAL) += \ |
| 15 | sighold.c sigignore.c sigrelse.c sigset.c |
| 16 | CSRC-$(UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL) += sysv_signal.c |
| 17 | CSRC-$(UCLIBC_SUSV4_LEGACY) += sigintr.c sigpause.c |
| 18 | |
| 19 | ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) |
| 20 | CSRC-y:=$(filter-out raise.c,$(CSRC-y)) |
| 21 | endif |
| 22 | |
| 23 | ifneq ($(strip $(ARCH_OBJS)),) |
| 24 | CSRC-y := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC-y)) |
| 25 | endif |
| 26 | |
| 27 | ifneq ($(UCLIBC_HAS_BACKTRACE),) |
| 28 | CFLAGS-raise.c = -fasynchronous-unwind-tables |
| 29 | endif |
| 30 | |
| 31 | SIGNAL_DIR := $(top_srcdir)libc/signal |
| 32 | SIGNAL_OUT := $(top_builddir)libc/signal |
| 33 | |
| 34 | SIGNAL_SRC := $(patsubst %.c,$(SIGNAL_DIR)/%.c,$(CSRC-y)) |
| 35 | SIGNAL_OBJ := $(patsubst %.c,$(SIGNAL_OUT)/%.o,$(CSRC-y)) |
| 36 | |
| 37 | libc-y += $(SIGNAL_OBJ) |
| 38 | |
| 39 | objclean-y += CLEAN_libc/signal |
| 40 | |
| 41 | CLEAN_libc/signal: |
| 42 | $(do_rm) $(addprefix $(SIGNAL_OUT)/*., o os) |