diff options
author | Keith Whitwell <[email protected]> | 2004-12-08 15:16:36 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-12-08 15:16:36 +0000 |
commit | fc236723273d4d872ae5e7cac876ea20175df10d (patch) | |
tree | 1d7e3461f665aa58b14ca0cb7100c1568a51cbd9 /configs/linux-dri | |
parent | e5aa3dd29b0b596a0dafab86ccec6e1f0013076f (diff) |
Improve the behaviour of the build system wrt depend files.
- Remove the -Y option for makedepend, so that the standard
directories are searched
- No longer pipe the multiple errors that the -Y option caused
into /dev/null -- we want to know about these failures.
- Fix up a few other misc makedepend failures.
Diffstat (limited to 'configs/linux-dri')
-rw-r--r-- | configs/linux-dri | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/configs/linux-dri b/configs/linux-dri index 955da949076..912ff5fb14b 100644 --- a/configs/linux-dri +++ b/configs/linux-dri @@ -10,18 +10,22 @@ CC = gcc CXX = g++ WARN_FLAGS = -Wall -OPT_FLAGS = -O -SOURCE_FLAGS = -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE \ - -D_BSD_SOURCE -D_GNU_SOURCE +OPT_FLAGS = -O -g PIC_FLAGS = -fPIC -CFLAGS = -DDRI_NEW_INTERFACE_ONLY $(WARN_FLAGS) -g $(OPT_FLAGS) $(ASM_FLAGS) \ - -std=c99 $(PIC_FLAGS) -ffast-math $(SOURCE_FLAGS) -DPTHREADS \ - -DUSE_EXTERNAL_DXTN_LIB=1 \ - -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions -CXXFLAGS = -DDRI_NEW_INTERFACE_ONLY $(WARN_FLAGS) -g $(OPT_FLAGS) -fPIC \ - $(SOURCE_FLAGS) +DEFINES = -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE \ + -D_BSD_SOURCE -D_GNU_SOURCE \ + -DDRI_NEW_INTERFACE_ONLY -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 + +X11_INCLUDES = -I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions + +CFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(ASM_FLAGS) -std=c99 $(PIC_FLAGS) -ffast-math \ + $(DEFINES) + +CXXFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) \ + $(DEFINES) + ASM_SOURCES = |