1 Subject: makefile: Append to compile flags.
2 From: Loui Chang <louipc.ist@gmail.com>
4 Reported-by: Andreas Hauser <andy-aur@splashground.de>
5 --- a/makefile 2004-11-20 13:50:09.000000000 -0500
6 +++ b/makefile 2008-06-12 11:59:57.000000000 -0400
8 CFLAGS = -MMD -g3 -O3 -march=$(MARCH) -Wall -pg
9 LDFLAGS = `sdl-config --libs` -lSDL_image -lSDL_mixer -lGL -lGLU -pg
11 -CFLAGS = -MMD -O3 -march=$(MARCH) -Wall $(SDL_FLAGS)
12 -LDFLAGS = `sdl-config --libs` -lSDL_image -lSDL_mixer -lGL -lGLU -s
13 +CFLAGS += -MMD $(SDL_FLAGS)
14 +LDFLAGS += $(sdl-config --libs) -lSDL_image -lSDL_mixer -lGL -lGLU -s