summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTero Roponen <tero.roponen@gmail.com>2023-12-08 10:10:52 +0200
committerKent Overstreet <kent.overstreet@linux.dev>2023-12-08 15:07:32 -0500
commit6b674b8817d9016a5dc2caafeead9eee717be503 (patch)
tree69c23ea954950a6a761d053e48c8e4ae0df64cd4
parente3e7f67b3ed89f5b3158142c29e66bb98f868ce2 (diff)
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>
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a7926f46..177ee45e 100644
--- a/Makefile
+++ b/Makefile
@@ -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)