Btrfs: Simplify makefile
authorJan Engelhardt <jengelh@computergmbh.de>
Fri, 14 Sep 2007 14:22:19 +0000 (10:22 -0400)
committerDavid Woodhouse <dwmw2@hera.kernel.org>
Fri, 14 Sep 2007 14:22:19 +0000 (10:22 -0400)
Single-colons will do here.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/Makefile

index 058a2da..6341cf7 100644 (file)
@@ -16,10 +16,11 @@ else
 # Normal Makefile
 
 KERNELDIR := /lib/modules/`uname -r`/build
-all::
+all:
        $(MAKE) -C $(KERNELDIR) M=`pwd` modules
-modules_install::
+modules_install:
        $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
-clean::
+clean:
        $(MAKE) -C $(KERNELDIR) M=`pwd` clean
+
 endif