From: Jan Engelhardt Date: Fri, 14 Sep 2007 14:22:19 +0000 (-0400) Subject: Btrfs: Simplify makefile X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=432eba0882a32d6181ba44044f6e576226134784;p=linux-edison.git Btrfs: Simplify makefile Single-colons will do here. Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/Makefile b/fs/btrfs/Makefile index 058a2dae65b..6341cf7a9f9 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