bcachefs-tools: make 'all' the default Makefile goal

"fsck/bcachefsck_all:" coming before "all:" in the Makefile
causes the bcachefs binary not being built by default. Fix
this by explicitly setting the .DEFAULT_GOAL=all.

Signed-off-by: Tero Roponen <tero.roponen@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
Tero Roponen 2023-12-08 10:10:52 +02:00 committed by Kent Overstreet
parent e3e7f67b3e
commit 6b674b8817

View File

@ -4,6 +4,7 @@ PREFIX?=/usr/local
PKG_CONFIG?=pkg-config
INSTALL=install
LN=ln
.DEFAULT_GOAL=all
ifeq ("$(origin V)", "command line")
BUILD_VERBOSE = $(V)