Skip to content

Commit 468ced3

Browse files
committed
Make install and check targets depend on all. Close #1395.
1 parent 7e61136 commit 468ced3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: mk/install.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ $(foreach target,$(CFG_TARGET_TRIPLES), \
5252
INSTALL_TARGET_RULES = $(foreach target,$(CFG_TARGET_TRIPLES), \
5353
install-target-$(target)-host-$(CFG_HOST_TRIPLE))
5454

55-
install: install-host install-targets
55+
install: all install-host install-targets
5656

5757
# Shorthand for build/stageN/bin
5858
HB = $(HBIN$(ISTAGE)_H_$(CFG_HOST_TRIPLE))

Diff for: mk/tests.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ endif
7070
# Main test targets
7171
######################################################################
7272

73-
check: tidy check-stage3 \
73+
check: all tidy check-stage3 \
7474

75-
check-full: tidy check-stage1 check-stage2 check-stage3 \
75+
check-full: all tidy check-stage1 check-stage2 check-stage3 \
7676

7777
# Run the tidy script in multiple parts to avoid huge 'echo' commands
7878
ifdef CFG_NOTIDY

0 commit comments

Comments
 (0)