1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/ucglib/Makefile.include
Bas Stottelaar 7d73e8acaf pkg/ucglib: refactor the Ucglib package
- 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
2020-06-17 00:47:54 +02:00

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