diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2007-09-14 10:22:19 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-09-14 10:22:19 -0400 |
commit | 432eba0882a32d6181ba44044f6e576226134784 (patch) | |
tree | 810a0ca94ea612c356f702b551cb54b103ba3d58 /fs/btrfs/Makefile | |
parent | 84a5d5eefd2b31c3cb97dc078589870bf85c7f23 (diff) | |
download | blackbird-op-linux-432eba0882a32d6181ba44044f6e576226134784.tar.gz blackbird-op-linux-432eba0882a32d6181ba44044f6e576226134784.zip |
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/Makefile | 7 |
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 # 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 |