Makefile.in 1.0 KB

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