summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-30 23:04:41 +0000
committertron <tron@openttd.org>2005-01-30 23:04:41 +0000
commit4609d64df7cc0f856ad875ed2e1bbe83beb5bb19 (patch)
tree031600de4d01b525d7c2f11c0446e81af7cf982c /Makefile
parent98da9d371289f20d141d21e8e49bb80019322239 (diff)
downloadopenttd-4609d64df7cc0f856ad875ed2e1bbe83beb5bb19.tar.xz
(svn r1745) Use -fno-inline when DEBUGing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c2122b1f9..8f9452c04 100644
--- a/Makefile
+++ b/Makefile
@@ -285,7 +285,7 @@ ifeq ($(shell if test $(CC_VERSION) -ge 34; then echo true; fi), true)
endif
ifdef DEBUG
- CFLAGS += -g -D_DEBUG
+ CFLAGS += -g -fno-inline -D_DEBUG
endif
ifdef PROFILE