What make command will print only Hello World! for the following Makefile?
Make sure that you don't print the command but only print the output using the short version of the silent flag for the make command.
some_target:
echo Hello ${input}
Tip: Make sure you haven't used any quotes in your answer.