mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
b253f61a7f
- Passing RIOT-OS specific data as user_ptr - Added necessary macros to Makefile.dep - Added missing explicit dependency to xtimer module - Renamed u8g2_riotos.c to more appropriate u8x8_riotos.c - Added u8x8_riotos.h with the RIOT-OS specific functionality - Removed the now-obsolete patch of U8g2 - Other minor fixes
10 lines
245 B
Makefile
10 lines
245 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/u8g2/csrc
|
|
|
|
# The RIOT-OS interface needs this to store peripheral information.
|
|
CFLAGS += -DU8X8_WITH_USER_PTR
|
|
|
|
# Link SDL if enabled.
|
|
ifneq (,$(filter u8g2_sdl,$(USEMODULE)))
|
|
LINKFLAGS += `sdl2-config --libs`
|
|
endif
|