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
16 lines
445 B
Makefile
16 lines
445 B
Makefile
PKG_NAME=ucglib
|
|
PKG_URL=https://github.com/olikraus/ucglib
|
|
PKG_VERSION=230f15e3bcd3c84977780e84bd855ac89c1959ee
|
|
PKG_LICENSE=BSD-2-Clause
|
|
|
|
include $(RIOTBASE)/pkg/pkg.mk
|
|
|
|
.PHONY: ucglib_sdl
|
|
|
|
all: $(filter ucglib_sdl,$(USEMODULE))
|
|
"$(MAKE)" -C $(PKG_BUILDDIR) -f $(CURDIR)/Makefile.ucglib
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)/csrc -f $(CURDIR)/Makefile.ucglib_csrc
|
|
|
|
ucglib_sdl:
|
|
"$(MAKE)" -C $(PKG_BUILDDIR)/sys/sdl/dev -f $(CURDIR)/Makefile.ucglib_sdl
|