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