/src/gos/gfx_* -> /src/gos/gos_*
This commit is contained in:
parent
0253b7df49
commit
1e8a7ff6dd
18 changed files with 16 additions and 16 deletions
|
@ -440,21 +440,21 @@
|
||||||
* (without any of the documentation overheads) is in the files below.
|
* (without any of the documentation overheads) is in the files below.
|
||||||
*/
|
*/
|
||||||
#elif GFX_USE_OS_RAWRTOS
|
#elif GFX_USE_OS_RAWRTOS
|
||||||
#include "src/gos/gfx_rawrtos.h"
|
#include "src/gos/gos_rawrtos.h"
|
||||||
#elif GFX_USE_OS_CHIBIOS
|
#elif GFX_USE_OS_CHIBIOS
|
||||||
#include "src/gos/gfx_chibios.h"
|
#include "src/gos/gos_chibios.h"
|
||||||
#elif GFX_USE_OS_FREERTOS
|
#elif GFX_USE_OS_FREERTOS
|
||||||
#include "src/gos/gfx_freertos.h"
|
#include "src/gos/gos_freertos.h"
|
||||||
#elif GFX_USE_OS_WIN32
|
#elif GFX_USE_OS_WIN32
|
||||||
#include "src/gos/gfx_win32.h"
|
#include "src/gos/gos_win32.h"
|
||||||
#elif GFX_USE_OS_LINUX
|
#elif GFX_USE_OS_LINUX
|
||||||
#include "src/gos/gfx_linux.h"
|
#include "src/gos/gos_linux.h"
|
||||||
#elif GFX_USE_OS_OSX
|
#elif GFX_USE_OS_OSX
|
||||||
#include "src/gos/gfx_osx.h"
|
#include "src/gos/gos_osx.h"
|
||||||
#elif GFX_USE_OS_RAW32
|
#elif GFX_USE_OS_RAW32
|
||||||
#include "src/gos/gfx_raw32.h"
|
#include "src/gos/gos_raw32.h"
|
||||||
#elif GFX_USE_OS_ECOS
|
#elif GFX_USE_OS_ECOS
|
||||||
#include "src/gos/gfx_ecos.h"
|
#include "src/gos/gos_ecos.h"
|
||||||
#else
|
#else
|
||||||
#error "Your operating system is not supported yet"
|
#error "Your operating system is not supported yet"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
GFXSRC += $(GFXLIB)/src/gos/gfx_chibios.c \
|
GFXSRC += $(GFXLIB)/src/gos/gos_chibios.c \
|
||||||
$(GFXLIB)/src/gos/gfx_freertos.c \
|
$(GFXLIB)/src/gos/gos_freertos.c \
|
||||||
$(GFXLIB)/src/gos/gfx_win32.c \
|
$(GFXLIB)/src/gos/gos_win32.c \
|
||||||
$(GFXLIB)/src/gos/gfx_linux.c \
|
$(GFXLIB)/src/gos/gos_linux.c \
|
||||||
$(GFXLIB)/src/gos/gfx_osx.c \
|
$(GFXLIB)/src/gos/gos_osx.c \
|
||||||
$(GFXLIB)/src/gos/gfx_raw32.c \
|
$(GFXLIB)/src/gos/gos_raw32.c \
|
||||||
$(GFXLIB)/src/gos/gfx_ecos.c \
|
$(GFXLIB)/src/gos/gos_ecos.c \
|
||||||
$(GFXLIB)/src/gos/gfx_rawrtos.c
|
$(GFXLIB)/src/gos/gos_rawrtos.c
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue