Makefile.arch 970 B

123456789101112131415161718192021222324252627282930313233
  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 mmap.c posix_fadvise.c posix_fadvise64.c \
  8. sigaction.c __syscall_error.c
  9. SSRC := \
  10. __longjmp.S vfork.S clone.S setjmp.S bsd-setjmp.S \
  11. bsd-_setjmp.S sigrestorer.S mmap64.S
  12. ifeq ($(CONFIG_ARM_EABI),y)
  13. CSRC += aeabi_assert.c aeabi_atexit.c aeabi_errno_addr.c \
  14. aeabi_localeconv.c aeabi_memclr.c aeabi_memcpy.c \
  15. aeabi_memmove.c aeabi_memset.c find_exidx.c
  16. SSRC += syscall-eabi.S
  17. ifeq ($(UCLIBC_HAS_WCHAR),y)
  18. CSRC += aeabi_mb_cur_max.c
  19. endif
  20. else
  21. CSRC += syscall.c
  22. endif
  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