C89 MSVC doesn't support 'inline' - will have to make define for

INLINE that can be redefined by MSVC
This commit is contained in:
twinaphex
2014-03-17 17:37:20 +01:00
parent 5345c2b9bc
commit 4835077e00
12 changed files with 12 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
TARGET ?= PicoDrive
CFLAGS += -Wall -ggdb -falign-functions=2
CFLAGS += -I.
CFLAGS += -I. -DINLINE=inline
ifndef DEBUG
CFLAGS += -O2 -DNDEBUG -ffunction-sections
ifeq ($(findstring clang,$(CC)),)