Home | History | Annotate | Download | only in core

Lines Matching defs:dist

17 # When specifying "dist", the user has asked that we copy the important
20 .PHONY: dist
21 dist: ;
23 dist_goal := $(strip $(filter dist,$(MAKECMDGOALS)))
24 MAKECMDGOALS := $(strip $(filter-out dist,$(MAKECMDGOALS)))
26 # The commandline was something like "make dist" or "make dist showcommands".
28 dist: $(DEFAULT_GOAL)
37 define copy-one-dist-file
40 @echo "Dist: $$@"
44 # A global variable to remember all dist'ed src:dst pairs.
45 # So if a src:dst is already dist'ed by another goal,
47 # copy-one-dist-file to avoid multiple rules for the same target.
51 # and "dist" is specified, the marked files will be copied to DIST_DIR.
54 # $(2): the dist files to add to those goals. If the file contains ':',
56 # to under the dist directory. Subdirs are ok, and will be created
58 define dist-for-goals
66 $(eval $(call copy-one-dist-file,\
75 # empty definition when not building dist
76 define dist-for-goals