diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2023-04-12 11:03:56 +0200 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2023-04-13 10:34:58 +0000 |
commit | 6f1b7d79b389a0c694f4fc41afee3d4ad565376e (patch) | |
tree | 3ceffc8409a0d203ba6c2c915980dcd7a3502609 /payloads/external | |
parent | 514930c2af0ef2fbe6c329712736b2168961dba2 (diff) |
payloads/external/Makefile.inc: Make linuxboot a phony target
To quote the gnu make manual: "A phony target is one that is not really
the name of a file; rather it is just a name for a recipe to be executed
when you make an explicit request. There are two reasons to use a phony
target: to avoid a conflict with a file of the same name, and to improve
performance."
Change-Id: I337f4f2e0257a75ba204d21f8aa84292e8233082
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74309
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Marvin Drees <marvin.drees@9elements.com>
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads/external')
-rw-r--r-- | payloads/external/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/Makefile.inc b/payloads/external/Makefile.inc index 475427ee9d..effab43818 100644 --- a/payloads/external/Makefile.inc +++ b/payloads/external/Makefile.inc @@ -366,7 +366,7 @@ payloads/external/iPXE/ipxe/ipxe.rom ipxe: $(DOTCONFIG) $(PXE_CONFIG_SCRIPT) MFLAGS= MAKEFLAGS= # LinuxBoot - +.PHONY: linuxboot linuxboot: $(MAKE) -C payloads/external/LinuxBoot \ CPUS=$(CPUS) \ |