Add all-logtags-files-under macro

Change-Id: Icb4c7e1bb2dfa4df71f07cb022c92e95a9115019
This commit is contained in:
Bjorn Bringert 2010-02-02 17:36:20 +00:00
parent 76a72277c9
commit a89c990e31

View file

@ -222,6 +222,19 @@ define all-subdir-Iaidl-files
$(call all-Iaidl-files-under,.)
endef
###########################################################
## Find all of the logtags files under the named directories.
## Meant to be used like:
## SRC_FILES := $(call all-logtags-files-under,src)
###########################################################
define all-logtags-files-under
$(patsubst ./%,%, \
$(shell cd $(LOCAL_PATH) ; \
find $(1) -name "*.logtags" -and -not -name ".*") \
)
endef
###########################################################
## Find all of the html files under the named directories.
## Meant to be used like: