mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
7d73e8acaf
- Passing RIOT-OS specific data as user_ptr - Added necessary macros to Makefile.dep - Added missing explicit dependency to xtimer module - Added ucg_riotos.h with the RIOT-OS specific functionality - Removed the now-obsolete patch of Ucglib - Other minor fixes
13 lines
336 B
Makefile
13 lines
336 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/ucglib/csrc
|
|
INCLUDES += -I$(RIOTBASE)/pkg/ucglib/contrib
|
|
|
|
# The RIOT-OS interface needs this to store peripheral information.
|
|
CFLAGS += -DWITH_USER_PTR
|
|
|
|
# Link SDL if enabled.
|
|
ifneq (,$(filter ucglib_sdl,$(USEMODULE)))
|
|
LINKFLAGS += $(shell sdl2-config --libs)
|
|
endif
|
|
|
|
DIRS += $(RIOTBASE)/pkg/ucglib/contrib
|