Skip to content

Commit 2c2552b

Browse files
authored
Auto merge of #36445 - infinity0:master, r=brson
mk: add a all-no-docs target to build everything except docs This makes things slightly more efficient for Debian's auto-builders where the docs can be built on just one architecture, and distributed to users of all other architectures as well.
2 parents cbd84ae + 332ba12 commit 2c2552b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mk/main.mk

+2-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,8 @@ ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
633633
$(foreach host,$(CFG_HOST), \
634634
all-target-$(target)-host-$(host)))
635635

636-
all: $(ALL_TARGET_RULES) $(GENERATED) docs
636+
all-no-docs: $(ALL_TARGET_RULES) $(GENERATED)
637+
all: all-no-docs docs
637638

638639
######################################################################
639640
# Build system documentation

0 commit comments

Comments
 (0)