Makefile.arch 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. # Makefile for uClibc NPTL
  2. #
  3. # Copyright (C) 2006 Steven J. Hill <sjhill@uclibc.org>
  4. #
  5. # Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
  6. #
  7. libpthread_linux_arch_SSRC = pt-vfork.S
  8. libpthread_linux_arch_CSRC = pthread_once.c lowlevellock.c \
  9. pt-__syscall_rt_sigaction.c pt-__syscall_error.c
  10. libc_linux_arch_CSRC = fork.c libc-lowlevellock.c
  11. libc_linux_arch_SSRC = clone.S vfork.S
  12. libc_linux_arch_SSRC-OMIT = waitpid.S
  13. CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread
  14. CFLAGS-pt-__syscall_rt_sigaction.c = -DNOT_IN_libc -DIS_IN_libpthread
  15. CFLAGS-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
  16. CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc -DIS_IN_libpthread
  17. ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread
  18. ASFLAGS-vfork.S = -DIS_IN_libc -DNOT_IN_libpthread
  19. ASFLAGS-clone.S = -DIS_IN_libc -DNOT_IN_libpthread
  20. ifeq ($(UCLIBC_HAS_STDIO_FUTEXES),y)
  21. CFLAGS-fork.c = -D__USE_STDIO_FUTEXES__
  22. endif
  23. CFLAGS-OMIT-fork.c = -DNOT_IN_libc -DIS_IN_libpthread
  24. CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
  25. # We always compile it in arm mode because of SAVE_PID macro
  26. # This macro should be alternatively implemented in THUMB
  27. # assembly.