From f4c31d53d52107e6ee7d6e6cb41163fdce2deb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Breno=20Rodrigues=20Guimar=C3=A3es?= Date: Sat, 24 Oct 2020 21:37:34 -0300 Subject: [PATCH] Use Make feature instead of bash command (#853) There is no need to use bash to print "Hello World" in Make. There is a language feature exactly for printing messages. --- m/make.makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m/make.makefile b/m/make.makefile index 257e9f91..4b17e2ac 100644 --- a/m/make.makefile +++ b/m/make.makefile @@ -1,2 +1,2 @@ -hello: - echo Hello World +$(info "Hello World") +all: