From: Tero Roponen Date: Fri, 8 Dec 2023 08:10:52 +0000 (+0200) Subject: bcachefs-tools: make 'all' the default Makefile goal X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6b674b8817d9016a5dc2caafeead9eee717be503;p=bcachefs-tools-debian 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 --- 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)