|
|
@ -42,14 +42,6 @@ CXXSRCS = math/test/test.cpp \ |
|
|
|
math/Dcm.cpp \
|
|
|
|
math/Dcm.cpp \
|
|
|
|
math/Matrix.cpp
|
|
|
|
math/Matrix.cpp
|
|
|
|
|
|
|
|
|
|
|
|
CXXHDRS = math/test/test.hpp \
|
|
|
|
|
|
|
|
math/Vector.hpp \
|
|
|
|
|
|
|
|
math/Vector3.hpp \
|
|
|
|
|
|
|
|
math/EulerAngles.hpp \
|
|
|
|
|
|
|
|
math/Quaternion.hpp \
|
|
|
|
|
|
|
|
math/Dcm.hpp \
|
|
|
|
|
|
|
|
math/Matrix.hpp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# In order to include .config we first have to save off the
|
|
|
|
# In order to include .config we first have to save off the
|
|
|
|
# current makefile name, since app.mk needs it.
|
|
|
|
# current makefile name, since app.mk needs it.
|
|
|
@ -61,14 +53,10 @@ ifeq ($(CONFIG_ARCH_CORTEXM4)$(CONFIG_ARCH_FPU),yy) |
|
|
|
INCLUDES += math/arm
|
|
|
|
INCLUDES += math/arm
|
|
|
|
CXXSRCS += math/arm/Vector.cpp \
|
|
|
|
CXXSRCS += math/arm/Vector.cpp \
|
|
|
|
math/arm/Matrix.cpp
|
|
|
|
math/arm/Matrix.cpp
|
|
|
|
CXXHDRS += math/arm/Vector.hpp \
|
|
|
|
|
|
|
|
math/arm/Matrix.hpp
|
|
|
|
|
|
|
|
else |
|
|
|
else |
|
|
|
INCLUDES += math/generic
|
|
|
|
INCLUDES += math/generic
|
|
|
|
CXXSRCS += math/generic/Vector.cpp \
|
|
|
|
CXXSRCS += math/generic/Vector.cpp \
|
|
|
|
math/generic/Matrix.cpp
|
|
|
|
math/generic/Matrix.cpp
|
|
|
|
CXXHDRS += math/generic/Vector.hpp \
|
|
|
|
|
|
|
|
math/generic/Matrix.hpp
|
|
|
|
|
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
include $(APPDIR)/mk/app.mk |
|
|
|
include $(APPDIR)/mk/app.mk |
|
|
|