Makefile.arch 453 B

1234567891011121314151617181920
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2001 by Hewlett-Packard Australia
  4. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  7. #
  8. CSRC := \
  9. pipe.c __init_brk.c brk.c sbrk.c pread_write.c
  10. ifeq ($(UCLIBC_LINUX_SPECIFIC),y)
  11. CSRC += cacheflush.c
  12. endif
  13. SSRC := setjmp.S __longjmp.S ___fpscr_values.S
  14. ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  15. SSRC += clone.S vfork.S
  16. endif