equal
deleted
inserted
replaced
283 ifeq ($(shell if test $(CC_VERSION) -ge 34; then echo true; fi), true) |
283 ifeq ($(shell if test $(CC_VERSION) -ge 34; then echo true; fi), true) |
284 CFLAGS += -Wdeclaration-after-statement -Wold-style-definition |
284 CFLAGS += -Wdeclaration-after-statement -Wold-style-definition |
285 endif |
285 endif |
286 |
286 |
287 ifdef DEBUG |
287 ifdef DEBUG |
288 CFLAGS += -g -D_DEBUG |
288 CFLAGS += -g -fno-inline -D_DEBUG |
289 endif |
289 endif |
290 |
290 |
291 ifdef PROFILE |
291 ifdef PROFILE |
292 CFLAGS += -pg |
292 CFLAGS += -pg |
293 LDFLAGS += -pg |
293 LDFLAGS += -pg |