12345678910111213141516 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- # multilib support
- ifeq ($(ADK_TARGET_WITH_MULTILIB),y)
- TABI:=
- ifeq ($(ADK_TARGET_MULTILIB_X86_X32),y)
- TABI+=x86_64-openadk-linux-gnu:x32
- endif
- ifeq ($(ADK_TARGET_MULTILIB_X86_32),y)
- TABI+=i486-openadk-linux-gnu:32
- endif
- ifeq ($(ADK_TARGET_MULTILIB_X86_64),y)
- TABI+=x86_64-openadk-linux-gnu:64
- endif
- endif
|