From fa61d2d3a6aeb1785d05ed7ae3e1f641d5202737 Mon Sep 17 00:00:00 2001 From: Robert Baldyga Date: Sat, 27 Jul 2019 19:01:58 +0200 Subject: [PATCH] utils: Makefile: Rename "default" target to "all" As "all" target is supported by upper level Makefile, and target names are passed to subdirectory Makefiles, all of them need to support "all" target as well. Rename default target for simplicity. Signed-off-by: Robert Baldyga --- utils/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/Makefile b/utils/Makefile index f55eb30..f93d708 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -29,7 +29,7 @@ endef endif # Just a placeholder when running make from parent dir without install/uninstall arg -default: ; +all: ; install: @echo "Installing Open-CAS utils"