ソースを参照

Btrfs: Simplify makefile

Single-colons will do here.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
Jan Engelhardt 18 年 前
コミット
432eba0882
1 ファイル変更4 行追加3 行削除
  1. 4 3
      fs/btrfs/Makefile

+ 4 - 3
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