Write a command to print the full name where the first_name is Peter and the last_name is Parker. No need to suppress the printing of the executing command.
If you want to pass multiple variables to
make, separate them with one space. full_name = ${last_name}, ${first_name}
phony_target:
echo ${full_name}
Tip: Make sure you haven't used any quotes in your answer.