From f7829be535ee09b48502ec60b8e997e5aa946b61 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 16 Mar 2011 17:28:10 -0700 Subject: [PATCH] core/Makefile: another attempt at dealing with GNU make 3.82 Trying another tack... Signed-off-by: H. Peter Anvin --- core/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/Makefile b/core/Makefile index 87ad97d..33ad7e9 100644 --- a/core/Makefile +++ b/core/Makefile @@ -80,8 +80,9 @@ kwdhash.gen: keywords genhash.pl $(OBJCOPY) -O binary $< $(@:.bin=.raw) # GNU make 3.82 gets confused by the first form -#%.bin: %.raw $(PREPCORE) -%.bin: %.raw +.PRECIOUS: %.raw + +%.bin: %.raw $(PREPCORE) $(PREPCORE) $< $@ %.o: %.asm kwdhash.gen ../version.gen -- 2.7.4