Home | History | Annotate | Download | only in core

Lines Matching defs:makefiles

1074 # Function : all-makefiles-under
1076 # Returns : a list of all makefiles immediately below some directory
1077 # Usage : $(call all-makefiles-under, <some path>)
1079 all-makefiles-under = $(wildcard $1/*/Android.mk)
1082 # Macro : all-subdir-makefiles
1083 # Returns : list of all makefiles in subdirectories of the current Makefile's
1085 # Usage : $(all-subdir-makefiles)
1087 all-subdir-makefiles = $(call all-makefiles-under,$(call my-dir))