Makefile.arch 1.0 KB

12345678910111213141516171819202122232425262728293031
  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 clone.S
  8. libpthread_linux_arch_CSRC = pthread_once.c lowlevellock.c \
  9. pthread_barrier_init.c pthread_barrier_wait.c pthread_barrier_destroy.c \
  10. pt-__syscall_error.c
  11. libc_linux_arch_CSRC = fork.c libc-lowlevellock.c
  12. libc_linux_arch_SSRC = clone.S vfork.S
  13. librt_linux_arch_CSRC = pt-__syscall_error.c
  14. ASFLAGS += -DUSE___THREAD
  15. ASFLAGS-pt-vfork.S = -DNOT_IN_libc -DIS_IN_libpthread -D_LIBC_REENTRANT
  16. CFLAGS-pthread_once.c = -DNOT_IN_libc -DIS_IN_libpthread
  17. CFLAGS-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread
  18. CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc -DIS_IN_libpthread
  19. ASFLAGS-clone.S = -D_LIBC_REENTRANT
  20. ASFLAGS-vfork.S = -D_LIBC_REENTRANT
  21. ifeq ($(UCLIBC_HAS_STDIO_FUTEXES),y)
  22. CFLAGS-fork.c = -D__USE_STDIO_FUTEXES__
  23. endif
  24. CFLAGS-OMIT-fork.c = -DNOT_IN_libc -DIS_IN_libpthread
  25. CFLAGS-OMIT-libc-lowlevellock.c = -DNOT_IN_libc -DIS_IN_libpthread