Makefile.arch 411 B

12345678910111213141516171819
  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 __syscall_error.c qp_ops.c
  8. SSRC := \
  9. __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S \
  10. syscall.S urem.S udiv.S umul.S sdiv.S rem.S pipe.S
  11. ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y)
  12. CSRC += sigaction.c
  13. SSRC += fork.S vfork.S
  14. endif