"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 <[email protected]> --- 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.43.0
