Skip to content

Commit

Permalink
Btrfs: Simplify makefile
Browse files Browse the repository at this point in the history
Single-colons will do here.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Jan Engelhardt authored and David Woodhouse committed Sep 14, 2007
1 parent 84a5d5e commit 432eba0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fs/btrfs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 432eba0

Please sign in to comment.