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
commit25f514ab6d31daada684f28100079e5ed8576632 (patch)
tree031600de4d01b525d7c2f11c0446e81af7cf982c /Makefile
parent6955f80c6e020cebec6212d7ce09def3329967f2 (diff)
downloadopenttd-25f514ab6d31daada684f28100079e5ed8576632.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