[PATCH] Add .PHONY for the phony targets

From: David Laight
Date: Wed Dec 18 2013 - 06:57:59 EST


Mark all the phony targets .PHONY otherwise the targets aren't built
it a local file of the same name exists.

Signed-off-by: David Laight <david.laight@xxxxxxxxxx>
---
arch/x86/boot/Makefile | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile
index 379814b..bba5ae9 100644
--- a/arch/x86/boot/Makefile
+++ b/arch/x86/boot/Makefile
@@ -129,6 +129,7 @@ $(obj)/mtools.conf: $(src)/mtools.conf.in
sed -e 's|@OBJ@|$(obj)|g' < $< > $@

# This requires write access to /dev/fd0
+.PHONY: bzdisk
bzdisk: $(obj)/bzImage $(obj)/mtools.conf
MTOOLSRC=$(obj)/mtools.conf mformat a: ; sync
syslinux /dev/fd0 ; sync
@@ -140,6 +141,7 @@ bzdisk: $(obj)/bzImage $(obj)/mtools.conf
MTOOLSRC=$(obj)/mtools.conf mcopy $(obj)/bzImage a:linux ; sync

# These require being root or having syslinux 2.02 or higher installed
+.PHONY: fdimage fdimage144
fdimage fdimage144: $(obj)/bzImage $(obj)/mtools.conf
dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=1440
MTOOLSRC=$(obj)/mtools.conf mformat v: ; sync
@@ -151,6 +153,7 @@ fdimage fdimage144: $(obj)/bzImage $(obj)/mtools.conf
fi
MTOOLSRC=$(obj)/mtools.conf mcopy $(obj)/bzImage v:linux ; sync

+.PHONY: fdimage288
fdimage288: $(obj)/bzImage $(obj)/mtools.conf
dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=2880
MTOOLSRC=$(obj)/mtools.conf mformat w: ; sync
@@ -162,6 +165,7 @@ fdimage288: $(obj)/bzImage $(obj)/mtools.conf
fi
MTOOLSRC=$(obj)/mtools.conf mcopy $(obj)/bzImage w:linux ; sync

+.PHONY: isoimage
isoimage: $(obj)/bzImage
-rm -rf $(obj)/isoimage
mkdir $(obj)/isoimage
@@ -183,6 +187,7 @@ isoimage: $(obj)/bzImage
isohybrid $(obj)/image.iso 2>/dev/null || true
rm -rf $(obj)/isoimage

+.PHONY: bzlilo
bzlilo: $(obj)/bzImage
if [ -f $(INSTALL_PATH)/vmlinuz ]; then mv $(INSTALL_PATH)/vmlinuz $(INSTALL_PATH)/vmlinuz.old; fi
if [ -f $(INSTALL_PATH)/System.map ]; then mv $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi
@@ -190,6 +195,7 @@ bzlilo: $(obj)/bzImage
cp System.map $(INSTALL_PATH)/
if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi

+.PHONY: install
install:
sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(obj)/bzImage \
System.map "$(INSTALL_PATH)"
--
1.8.1.2



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/