mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
14 lines
341 B
Makefile
14 lines
341 B
Makefile
MODULE = u8g2_sdl
|
|
|
|
CFLAGS += $(shell sdl2-config --cflags)
|
|
|
|
# Ignore warning generated when compiling this module
|
|
CFLAGS += -Wno-empty-translation-unit \
|
|
-Wno-newline-eof \
|
|
-Wno-unused-parameter \
|
|
-Wno-unused \
|
|
-Wno-overlength-strings \
|
|
-Wno-pointer-arith
|
|
|
|
include $(RIOTBASE)/Makefile.base
|