Skip to content

Commit 332ba12

Browse files
committed
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.
1 parent 09905b1 commit 332ba12

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
@@ -630,7 +630,8 @@ ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
630630
$(foreach host,$(CFG_HOST), \
631631
all-target-$(target)-host-$(host)))
632632

633-
all: $(ALL_TARGET_RULES) $(GENERATED) docs
633+
all-no-docs: $(ALL_TARGET_RULES) $(GENERATED)
634+
all: all-no-docs docs
634635

635636
######################################################################
636637
# Build system documentation

0 commit comments

Comments
 (0)