Makefile.arch 1.1 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, 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 \
  9. pt-__syscall_rt_sigaction.c pt-__syscall_error.c \
  10. lowlevellock.c
  11. libc_linux_arch_CSRC = fork.c libc-lowlevellock.c
  12. libc_linux_arch_SSRC = clone.S vfork.S
  13. libc_linux_arch_SSRC-OMIT = waitpid.S
  14. CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread
  15. CFLAGS-pt-__syscall_rt_sigaction.c = -DNOT_IN_libc -DIS_IN_libpthread
  16. CFLAGS-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
  17. CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc -DIS_IN_libpthread
  18. ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -marm
  19. ifeq ($(UCLIBC_HAS_STDIO_FUTEXES),y)
  20. CFLAGS-fork.c = -D__USE_STDIO_FUTEXES__
  21. endif
  22. CFLAGS-OMIT-fork.c = -DNOT_IN_libc -DIS_IN_libpthread
  23. CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
  24. # We always compile it in arm mode because of SAVE_PID macro
  25. # This macro should be alternatively implemented in THUMB
  26. # assembly.
  27. ASFLAGS-vfork.S = -marm