1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/ubasic/ubasic_tests.mk
2019-04-08 17:09:28 +02:00

14 lines
390 B
Makefile

MODULE = ubasic_tests
# tests.c has constants that may overflow on <32 bit platforms
CFLAGS += -Wno-overflow
# ubasic_init_peek_poke used in those tests is not exposed
CFLAGS += -Wno-implicit-function-declaration
# LLVM doesn't like ubasic_init_peek_poke due to strict prototyping either
CFLAGS += -Wno-strict-prototypes
SRC := tests.c
NO_AUTO_SRC := 1
include $(RIOTBASE)/Makefile.base