diff options
author | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 01:36:17 +0000 |
---|---|---|
committer | icculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2009-09-15 01:36:17 +0000 |
commit | 93404730059e9c8b6fcbf4e7c0f5ff69a23e6ea1 (patch) | |
tree | be488e5f984aa8eb3adab72ccf2689face88e3c7 | |
parent | 2d7e1ad4c8e03c50021b9b7d1511e1240f9c7e2a (diff) | |
download | ioquake3-aero-93404730059e9c8b6fcbf4e7c0f5ff69a23e6ea1.tar.gz ioquake3-aero-93404730059e9c8b6fcbf4e7c0f5ff69a23e6ea1.zip |
Make TOOLS_CFLAGS more easily customisable in the Makefile.
Fixes Bugzilla #4155.
git-svn-id: svn://svn.icculus.org/quake3/trunk@1606 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1073,10 +1073,10 @@ makedirs: ############################################################################# TOOLS_OPTIMIZE = -g -O2 -Wall -fno-strict-aliasing -TOOLS_CFLAGS = $(TOOLS_OPTIMIZE) \ - -DTEMPDIR=\"$(TEMPDIR)\" -DSYSTEM=\"\" \ - -I$(Q3LCCSRCDIR) \ - -I$(LBURGDIR) +TOOLS_CFLAGS += $(TOOLS_OPTIMIZE) \ + -DTEMPDIR=\"$(TEMPDIR)\" -DSYSTEM=\"\" \ + -I$(Q3LCCSRCDIR) \ + -I$(LBURGDIR) TOOLS_LIBS = TOOLS_LDFLAGS = |