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)
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 058a2dae65b4..6341cf7a9f91 100644
--- a/fs/btrfs/Makefile
+++ b/fs/btrfs/Makefile
@@ -16,10 +16,11 @@ else
16# Normal Makefile 16# Normal Makefile
17 17
18KERNELDIR := /lib/modules/`uname -r`/build 18KERNELDIR := /lib/modules/`uname -r`/build
19all:: 19all:
20 $(MAKE) -C $(KERNELDIR) M=`pwd` modules 20 $(MAKE) -C $(KERNELDIR) M=`pwd` modules
21modules_install:: 21modules_install:
22 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install 22 $(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
23clean:: 23clean:
24 $(MAKE) -C $(KERNELDIR) M=`pwd` clean 24 $(MAKE) -C $(KERNELDIR) M=`pwd` clean
25
25endif 26endif