mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
415 B
Makefile
17 lines
415 B
Makefile
PKG_BUILDDIR ?= $(PKGDIRBASE)/libfixmath
|
|
|
|
# The static cache is huge, disable it.
|
|
CFLAGS += -DFIXMATH_NO_CACHE
|
|
|
|
ifneq (,$(filter arch_8bit,$(FEATURES_USED)))
|
|
CFLAGS += -DFIXMATH_OPTIMIZE_8BIT
|
|
endif
|
|
|
|
DIRS += $(PKG_BUILDDIR)/libfixmath
|
|
INCLUDES += -I$(PKG_BUILDDIR)/libfixmath
|
|
|
|
ifneq (,$(filter libfixmath-unittests,$(USEMODULE)))
|
|
DIRS += $(PKG_BUILDDIR)/unittests
|
|
INCLUDES += -I$(PKG_BUILDDIR)/unittests
|
|
endif
|