diff options
author | Thomas Sterren <thomas.sterren@simulton.com> | 2018-03-06 09:38:37 +0100 |
---|---|---|
committer | Thomas Sterren <thomas.sterren@simulton.com> | 2018-03-06 09:38:37 +0100 |
commit | 65d00b16b9fbb46ecd69a383dc4adde5c5c03790 (patch) | |
tree | 30920f0457522be32ce2b332afe0d2916d93cf66 /gfx.mk | |
parent | 992850bcb1992ff052d5ac2379e4675a34861723 (diff) | |
parent | f265924396167729e8d9fb36a0383263f36c1270 (diff) | |
download | uGFX-65d00b16b9fbb46ecd69a383dc4adde5c5c03790.tar.gz uGFX-65d00b16b9fbb46ecd69a383dc4adde5c5c03790.tar.bz2 uGFX-65d00b16b9fbb46ecd69a383dc4adde5c5c03790.zip |
Merge branch 'master' of https://git.ugfx.io/uGFX/uGFX
Diffstat (limited to 'gfx.mk')
-rw-r--r-- | gfx.mk | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -37,35 +37,35 @@ endif # Include the operating system define
ifeq ($(OPT_OS),arduino)
- GFXDEFS += GFX_USE_OS_ARDUINO=TRUE
+ GFXDEFS += GFX_USE_OS_ARDUINO=GFXON
endif
ifeq ($(OPT_OS),win32)
- GFXDEFS += GFX_USE_OS_WIN32=TRUE
+ GFXDEFS += GFX_USE_OS_WIN32=GFXON
endif
ifeq ($(OPT_OS),win32.chibios)
- GFXDEFS += GFX_USE_OS_CHIBIOS=TRUE
+ GFXDEFS += GFX_USE_OS_CHIBIOS=GFXON
endif
ifeq ($(OPT_OS),win32.raw32)
- GFXDEFS += GFX_USE_OS_RAW32=TRUE
+ GFXDEFS += GFX_USE_OS_RAW32=GFXON
endif
ifeq ($(OPT_OS),linux)
- GFXDEFS += GFX_USE_OS_LINUX=TRUE
+ GFXDEFS += GFX_USE_OS_LINUX=GFXON
endif
ifeq ($(OPT_OS),osx)
- GFXDEFS += GFX_USE_OS_OSX=TRUE
+ GFXDEFS += GFX_USE_OS_OSX=GFXON
endif
ifeq ($(OPT_OS),chibios)
- GFXDEFS += GFX_USE_OS_CHIBIOS=TRUE
+ GFXDEFS += GFX_USE_OS_CHIBIOS=GFXON
endif
ifeq ($(OPT_OS),freertos)
- GFXDEFS += GFX_USE_OS_FREERTOS=TRUE
+ GFXDEFS += GFX_USE_OS_FREERTOS=GFXON
endif
ifeq ($(OPT_OS),ecos)
- GFXDEFS += GFX_USE_OS_ECOS=TRUE
+ GFXDEFS += GFX_USE_OS_ECOS=GFXON
endif
ifeq ($(OPT_OS),rawrtos)
- GFXDEFS += GFX_USE_OS_RAWRTOS=TRUE
+ GFXDEFS += GFX_USE_OS_RAWRTOS=GFXON
endif
ifeq ($(OPT_OS),raw32)
- GFXDEFS += GFX_USE_OS_RAW32=TRUE
+ GFXDEFS += GFX_USE_OS_RAW32=GFXON
endif
|