mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
19 lines
371 B
Makefile
19 lines
371 B
Makefile
include ../Makefile.pkg_common
|
|
|
|
USEMODULE += libfixmath-unittests
|
|
|
|
ifneq (,$(filter native,$(BOARD)))
|
|
LINKFLAGS += -lm
|
|
endif
|
|
|
|
USEMODULE += printf_float
|
|
USEMODULE += test_utils_main_exit_cb
|
|
|
|
CFLAGS += -Wno-error=strict-prototypes
|
|
CFLAGS += -Wno-error=old-style-definition
|
|
CFLAGS += -Wno-error=format
|
|
|
|
TEST_ON_CI_WHITELIST += native
|
|
|
|
include $(RIOTBASE)/Makefile.include
|