andrond mk通配符遍历文件夹

define all-cpp-files-under
$(patsubst ./%,%, \
$(shell cd $(LOCAL_PATH) ; \
find $(1) -name "*.cpp" -and -not -name ".*" -and -not -name "CCEditBoxImplWindow.cpp") \
)
endef

define all-subdir-cpp-files
$(call all-cpp-files-under,../../Classes)
endef

 

LOCAL_SRC_FILES += $(call all-subdir-cpp-files)

posted @ 2014-12-03 15:16  MrBlue  阅读(312)  评论(0编辑  收藏  举报