Makefile.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. subdirs += libc/signal
  8. CSRC := allocrtsig.c killpg.c raise.c sigaction.c sigaddset.c sigandset.c \
  9. sigblock.c sigdelset.c sigempty.c sigfillset.c siggetmask.c \
  10. sigisempty.c sigismem.c sigjmp.c signal.c \
  11. sigorset.c sigpause.c sigsetmask.c sigsetops.c sigwait.c
  12. ifeq ($(UCLIBC_HAS_OBSOLETE_BSD_SIGNAL),y)
  13. CSRC += sighold.c sigignore.c sigrelse.c sigset.c
  14. endif
  15. ifeq ($(UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL),y)
  16. CSRC += sysv_signal.c
  17. endif
  18. ifeq ($(UCLIBC_SUSV4_LEGACY),y)
  19. CSRC += sigintr.c
  20. endif
  21. ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  22. CSRC:=$(filter-out raise.c sigaction.c,$(CSRC))
  23. endif
  24. ifneq ($(strip $(ARCH_OBJS)),)
  25. CSRC := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC))
  26. endif
  27. SIGNAL_DIR := $(top_srcdir)libc/signal
  28. SIGNAL_OUT := $(top_builddir)libc/signal
  29. SIGNAL_SRC := $(patsubst %.c,$(SIGNAL_DIR)/%.c,$(CSRC))
  30. SIGNAL_OBJ := $(patsubst %.c,$(SIGNAL_OUT)/%.o,$(CSRC))
  31. libc-y += $(SIGNAL_OBJ)
  32. objclean-y += signal_clean
  33. signal_clean:
  34. $(do_rm) $(addprefix $(SIGNAL_OUT)/*., o os)