diff options
Diffstat (limited to 'Makefile.mk')
-rw-r--r-- | Makefile.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.mk b/Makefile.mk index a16089d6d2..bae34e0c79 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -90,6 +90,13 @@ show_coreboot: | files_added .PHONY: show_notices show_notices:: | show_coreboot +# This rule allows the site-local makefile to run before starting the actual +# coreboot build. It should not be used in the regular coreboot makefiles. +# Note: This gets run after the immediate makefile code like updating the +# submodules, but before any other targets. +.PHONY: site-local-target +site-local-target:: + ####################################################################### # our phony targets PHONY+= clean-abuild coreboot check-style build_complete |