1cur_dir := $(dir $(lastword $(MAKEFILE_LIST))) 2 3NN_LIB_NAME := libcmsis_nn 4 5#ifneq ($(SDK),1) 6obj-y := 7obj-y += ActivationFunctions/ 8# obj-y += BasicMathFunctions/ 9# obj-y += ConcatenationFunctions/ 10obj-y += ConvolutionFunctions/ 11obj-y += FullyConnectedFunctions/ 12obj-y += NNSupportFunctions/ 13# obj-y += PoolingFunctions/ 14# obj-y += ReshapeFunctions/ 15# obj-y += SoftmaxFunctions/ 16$(NN_LIB_NAME)-y := $(obj-y) 17#endif 18 19obj-y := $(NN_LIB_NAME).a 20 21subdir-ccflags-y += -Iplatform/cmsis/inc -Iinclude/cmsis_nn 22subdir-ccflags-y += -Iinclude/cmsis_dsp 23