
Don't define ASM_SOURCES variable globally -- reserve that variable to be defined locally by makefiles, together with C_SOURCES and CPP_SOURCES.
10 lines
240 B
Plaintext
10 lines
240 B
Plaintext
# Configuration for Linux with x86 optimizations
|
|
|
|
include $(TOP)/configs/linux
|
|
|
|
CONFIG_NAME = linux-x86
|
|
|
|
ASM_FLAGS = -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM
|
|
MESA_ASM_SOURCES = $(X86_SOURCES)
|
|
GLAPI_ASM_SOURCES = $(X86_API)
|