Home | History | Annotate | Download | only in tasks

Lines Matching defs:deps

18 # To invoke, run "make deps-license PROJ_PATH=<proj-path-patterns> DEP_PATH=<dep-path-patterns>".
21 # Example: "make deps-license packages/app/% external/%" prints all modules in packages/app/ with their dpendencies in external/.
24 ifneq (,$(filter deps-license,$(MAKECMDGOALS)))
26 $(error To "make deps-license" you must specify PROJ_PATH and DEP_PATH.)
29 $(error To "make deps-license" you must specify PROJ_PATH and DEP_PATH.)
42 define print-deps-license
46 $(eval deps :=)\
47 $(eval $(call get-module-all-dependencies,deps,$(m)))\
49 $(foreach d,$(deps),\
55 .PHONY: deps-license
56 deps-license:
57 @$(call print-deps-license)