Makefile.arch 987 B

12345678910111213141516171819202122232425262728293031323334
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. CSRC := brk.c ioperm.c iopl.c sigaction.c __syscall_error.c
  8. SSRC := \
  9. __longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \
  10. bsd-_setjmp.S sigrestorer.S mmap64.S
  11. ifeq ($(CONFIG_ARM_EABI),y)
  12. CSRC += aeabi_assert.c aeabi_atexit.c aeabi_errno_addr.c \
  13. aeabi_localeconv.c aeabi_memclr.c aeabi_memcpy.c \
  14. aeabi_memmove.c aeabi_memset.c find_exidx.c
  15. SSRC += syscall-eabi.S
  16. ifeq ($(UCLIBC_HAS_WCHAR),y)
  17. CSRC += aeabi_mb_cur_max.c
  18. endif
  19. else
  20. CSRC += syscall.c
  21. endif
  22. include $(top_srcdir)libc/sysdeps/linux/Makefile.commonarch
  23. ifeq ($(CONFIG_ARM_EABI),y)
  24. libc-static-y += $(ARCH_OUT)/aeabi_lcsts.o $(ARCH_OUT)/aeabi_math.o \
  25. $(ARCH_OUT)/aeabi_sighandlers.o
  26. libc-nonshared-y += $(ARCH_OUT)/aeabi_lcsts.os $(ARCH_OUT)/aeabi_math.os \
  27. $(ARCH_OUT)/aeabi_sighandlers.os
  28. libc-shared-y += $(ARCH_OUT)/aeabi_unwind_cpp_pr1.os
  29. endif