aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/Makefile
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2007-09-14 10:22:19 -0400
committerDavid Woodhouse <dwmw2@hera.kernel.org>2007-09-14 10:22:19 -0400
commit432eba0882a32d6181ba44044f6e576226134784 (patch)
tree810a0ca94ea612c356f702b551cb54b103ba3d58 /fs/btrfs/Makefile
parent84a5d5eefd2b31c3cb97dc078589870bf85c7f23 (diff)
downloadkernel_samsung_smdk4412-432eba0882a32d6181ba44044f6e576226134784.zip
kernel_samsung_smdk4412-432eba0882a32d6181ba44044f6e576226134784.tar.gz
kernel_samsung_smdk4412-432eba0882a32d6181ba44044f6e576226134784.tar.bz2
Btrfs: Simplify makefile
Single-colons will do here. Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/Makefile')
-rw-r--r--fs/btrfs/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile
index 058a2da..6341cf7 100644
--- a/fs/btrfs/Makefile
+++ b/fs/btrfs/Makefile
@@ -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