Make install and check targets depend on all. Close #1395.

This commit is contained in:
Graydon Hoare 2011-12-30 12:48:07 -08:00
parent 7e611366bb
commit 468ced3868
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ $(foreach target,$(CFG_TARGET_TRIPLES), \
INSTALL_TARGET_RULES = $(foreach target,$(CFG_TARGET_TRIPLES), \
install-target-$(target)-host-$(CFG_HOST_TRIPLE))
install: install-host install-targets
install: all install-host install-targets
# Shorthand for build/stageN/bin
HB = $(HBIN$(ISTAGE)_H_$(CFG_HOST_TRIPLE))

View File

@ -70,9 +70,9 @@ endif
# Main test targets
######################################################################
check: tidy check-stage3 \
check: all tidy check-stage3 \
check-full: tidy check-stage1 check-stage2 check-stage3 \
check-full: all tidy check-stage1 check-stage2 check-stage3 \
# Run the tidy script in multiple parts to avoid huge 'echo' commands
ifdef CFG_NOTIDY