Lines Matching full:targets

9 # To see a list of typical targets execute "make help"
15 $(error targets prefixed with '__' are only for internal use))
27 # unavoidable when linking the built-in.a targets which finally
265 # To make sure we do not include .config for any of the *config targets
267 # It is allowed to specify more targets when calling make, including
268 # mixing *config targets and build targets.
270 # Detect when mixed targets is specified, and make a second invocation
276 clean-targets := %clean mrproper cleandocs
277 no-dot-config-targets := $(clean-targets) \
282 no-sync-config-targets := $(no-dot-config-targets) %install kernelrelease \
284 single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.s %.symtypes %/
292 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
293 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
298 ifneq ($(filter $(no-sync-config-targets), $(MAKECMDGOALS)),)
299 ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
317 # We cannot build single targets and the others at the same time
318 ifneq ($(filter $(single-targets), $(MAKECMDGOALS)),)
320 ifneq ($(filter-out $(single-targets), $(MAKECMDGOALS)),)
326 ifneq ($(filter $(clean-targets),$(MAKECMDGOALS)),)
327 ifneq ($(filter-out $(clean-targets),$(MAKECMDGOALS)),)
341 # We're called with mixed targets (*config and build targets).
558 # Rules shared between *config targets and build targets
618 # *config targets only - make sure prerequisites are updated, and descend
635 # Build targets only - this includes vmlinux, arch specific targets, clean
636 # targets and others. In general all targets except *config targets.
689 # Defaults to vmlinux, but the arch makefile usually adds further targets
744 # The syncconfig should be executed only once to make all the targets.
753 # External modules and some install targets need include/generated/autoconf.h
835 # Some targets (ARM with Thumb2, for example), can't be built with frame
1308 targets := vmlinux
1536 targets += modules.order
1664 # Brief documentation of the typical targets used
1674 @echo 'Cleaning targets:'
1680 @echo 'Configuration targets:'
1683 @echo 'Other generic targets:'
1684 @echo ' all - Build all targets marked with [*]'
1737 @echo 'Userspace tools targets:'
1744 @echo 'Documentation targets:'
1747 @echo 'Architecture specific targets ($(SRCARCH)):'
1757 printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
1761 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
1762 @echo ' make V=2 [targets] 2 => give reason for rebuild of target'
1763 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
1764 @echo ' make C=1 [targets] Check re-compiled c source with $$CHECK'
1766 @echo ' make C=2 [targets] Force check of all c source with $$CHECK'
1767 @echo ' make RECORDMCOUNT_WARN=1 [targets] Warn about ignored mcount sections'
1768 @echo ' make W=n [targets] Enable extra build checks, n=1,2,3 where'
1774 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
1785 @echo 'Architecture specific targets ($(SRCARCH) $*):'
1792 # Documentation targets
1822 # The following are the only valid targets when building external
1880 # Single targets
1886 # The supported suffixes for single-target are listed in 'single-targets'
1990 targets += $(extmod-prefix)compile_commands.json
2074 # read saved command lines for existing targets
2075 existing-targets := $(wildcard $(sort $(targets)))
2077 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)