diff options
author | Ian Romanick <idr@us.ibm.com> | 2005-07-02 07:38:40 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2005-07-02 07:38:40 +0000 |
commit | 9204e87b2ea2e9b441ab6422ae58bfebb5cdffce (patch) | |
tree | be328c011c71c6ae6763b69bc87afb35a13437f9 /configs/linux | |
parent | 4f178c6e3a95848257edc4623c72fb0a8eebf282 (diff) |
Massive refactor of (most of) the Linux config files. This reduces
the length of each config and brings a lot of much needed uniformity
to them.
Diffstat (limited to 'configs/linux')
-rw-r--r-- | configs/linux | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/configs/linux b/configs/linux index 478947864b..e3119ec5cd 100644 --- a/configs/linux +++ b/configs/linux @@ -8,13 +8,26 @@ CONFIG_NAME = linux CC = gcc CXX = g++ -CFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -DUSE_XSHM -DPTHREADS -I/usr/X11R6/include -CXXFLAGS = -O3 -ansi -pedantic -fPIC -ffast-math -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE -D_BSD_SOURCE -GLUT_CFLAGS = -fexceptions +WARN_FLAGS = -Wall +OPT_FLAGS = -O3 -g +PIC_FLAGS = -fPIC + +# Add '-DGLX_USE_TLS' to ARCH_FLAGS to enable TLS support. Add -m32 +# to build properly on 64-bit platforms. + +ARCH_FLAGS ?= + +DEFINES = -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE \ + -D_BSD_SOURCE -DPTHREADS -DUSE_XSHM +X11_INCLUDES = -I/usr/X11R6/include + +CFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \ + $(ASM_FLAGS) $(X11_INCLUDES) -std=c99 -ffast-math + +CXXFLAGS = $(WARN_FLAGS) $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) \ + $(X11_INCLUDES) + +GLUT_CFLAGS = -fexceptions -# Library/program dependencies -# Need to have -L/usr/X11R6/lib in these: -GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread -GLUT_LIB_DEPS = -L$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm -GLW_LIB_DEPS = -L$(LIB_DIR) -l$(GL_LIB) -L/usr/X11R6/lib -lXt -lX11 +EXTRA_LIB_PATH = -L/usr/X11R6/lib |