Makefile.in 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. ifneq ($(strip $(ARCH_OBJS)),)
  22. CSRC := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC))
  23. endif
  24. SIGNAL_DIR := $(top_srcdir)libc/signal
  25. SIGNAL_OUT := $(top_builddir)libc/signal
  26. SIGNAL_SRC := $(patsubst %.c,$(SIGNAL_DIR)/%.c,$(CSRC))
  27. SIGNAL_OBJ := $(patsubst %.c,$(SIGNAL_OUT)/%.o,$(CSRC))
  28. libc-y += $(SIGNAL_OBJ)
  29. objclean-y += signal_clean
  30. signal_clean:
  31. $(do_rm) $(addprefix $(SIGNAL_OUT)/*., o os)