Makefile.multilib 442 B

12345678910111213141516
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. # multilib support
  4. ifeq ($(ADK_TARGET_WITH_MULTILIB),y)
  5. TABI:=
  6. ifeq ($(ADK_TARGET_MULTILIB_X86_X32),y)
  7. TABI+=x86_64-openadk-linux-gnu:x32
  8. endif
  9. ifeq ($(ADK_TARGET_MULTILIB_X86_32),y)
  10. TABI+=i486-openadk-linux-gnu:32
  11. endif
  12. ifeq ($(ADK_TARGET_MULTILIB_X86_64),y)
  13. TABI+=x86_64-openadk-linux-gnu:64
  14. endif
  15. endif