Commit 432eba08 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David Woodhouse
Browse files

Btrfs: Simplify makefile



Single-colons will do here.

Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent 84a5d5ee
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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