Lines Matching refs:single
270 single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.s %.symtypes %/
276 single-build :=
303 # We cannot build single targets and the others at the same time
304 ifneq ($(filter $(single-targets), $(MAKECMDGOALS)),)
305 single-build := 1
306 ifneq ($(filter-out $(single-targets), $(MAKECMDGOALS)),)
1812 # The supported suffixes for single-target are listed in 'single-targets'
1818 ifdef single-build
1821 single-ko := $(sort $(filter %.ko, $(MAKECMDGOALS)))
1822 single-no-ko := $(sort $(patsubst %.ko,%.mod, $(MAKECMDGOALS)))
1824 $(single-ko): single_modpost
1826 $(single-no-ko): descend
1830 # For the single build of in-tree modules, use a temporary file to avoid
1836 single_modpost: $(single-no-ko) modules_prepare
1837 $(Q){ $(foreach m, $(single-ko), echo $(extmod-prefix)$m;) } > $(MODORDER)
1842 export KBUILD_SINGLE_TARGETS := $(addprefix $(extmod-prefix), $(single-no-ko))
1863 single-build=$(if $(filter-out $@/, $(filter $@/%, $(KBUILD_SINGLE_TARGETS))),1) \