1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/ucglib/Makefile.ucglib_sdl
Alexandre Abadie 0fc0ad7207
pkg/ucglib: clean build system integration
And leave the original repository untouched (except for patches)
2020-06-12 17:55:29 +02:00

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