Makefile.arch 957 B

12345678910111213141516171819202122232425262728
  1. # Makefile for uClibc NPTL
  2. #
  3. # Copyright (C) 2009 Bernhard Reutner-Fischer <uclibc@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 pt-__syscall_error.c
  9. libc_linux_arch_CSRC = fork.c
  10. libc_linux_arch_SSRC = clone.S vfork.S
  11. ASFLAGS += -DUSE___THREAD
  12. CFLAGS += $(SSP_ALL_CFLAGS)
  13. CFLAGS-pthread_once.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1
  14. CFLAGS-lowlevellock.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1
  15. CFLAGS-pt-__syscall_error.c = -DNOT_IN_libc=1 -DIS_IN_libpthread=1
  16. ASFLAGS-pt-vfork.S = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 -D_LIBC_REENTRANT
  17. #ASFLAGS-lowlevellock.S = -DNOT_IN_libc=1 -DIS_IN_libpthread=1 -D_LIBC_REENTRANT
  18. #ASFLAGS-libc-lowlevellock.S = -D_LIBC_REENTRANT
  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