
linux-dri. Turn on -O by default (-O2 provides a slight improvement in performance, at a large cost to debuggability). Turn off -fPIC on x86 by default. Turn on -Wall, to catch more stupid mistakes. This could be both done cleaner, and done for more config files, but it works for me for now.
13 lines
306 B
Makefile
13 lines
306 B
Makefile
# -*-makefile-*-
|
|
# Configuration for linux-dri: Linux DRI hardware drivers for XFree86 & others
|
|
|
|
include $(TOP)/configs/linux-dri
|
|
|
|
CONFIG_NAME = linux-dri-x86
|
|
|
|
# Unnecessary on x86, generally.
|
|
PIC_FLAGS =
|
|
|
|
ASM_FLAGS = -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM
|
|
ASM_SOURCES = $(X86_SOURCES)
|