Makefile.arch 971 B

1234567891011121314151617181920212223242526272829
  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
  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. 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