Makefile 442 B

12345678910111213141516171819202122
  1. abi-variants := 32 64
  2. abi-32-condition := __WORDSIZE == 32
  3. abi-64-condition := __WORDSIZE == 64
  4. ifeq ($(subdir),rt)
  5. librt-routines += rt-sysdep
  6. librt-shared-only-routines += rt-sysdep
  7. endif
  8. ifeq ($(subdir),elf)
  9. sysdep_routines += dl-vdso
  10. endif
  11. ifeq ($(subdir),sysvipc)
  12. sysdep_routines += getshmlba
  13. endif
  14. ifeq ($(subdir),nptl)
  15. # pull in __syscall_error routine
  16. libpthread-routines += sysdep
  17. libpthread-shared-only-routines += sysdep
  18. endif