From 6b674b8817d9016a5dc2caafeead9eee717be503 Mon Sep 17 00:00:00 2001 From: Tero Roponen Date: Fri, 8 Dec 2023 10:10:52 +0200 Subject: [PATCH] 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 Signed-off-by: Kent Overstreet --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a7926f4..177ee45 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) -- 2.39.5