1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/pkg_libfixmath_unittests/Makefile
Benjamin Valentin d102723bc9 tests/pkg_libfixmath_unittests: adapt test to upstream changes
Let's no longer patch the upstream test but use it directly
2023-01-20 17:42:54 +01:00

19 lines
373 B
Makefile

include ../Makefile.tests_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