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.
This commit is contained in:
Breno Rodrigues Guimarães
2020-10-24 21:37:34 -03:00
committed by GitHub
parent 6862972c9c
commit f4c31d53d5

View File

@@ -1,2 +1,2 @@
hello:
echo Hello World
$(info "Hello World")
all: