CS计算机代考程序代写 Suppose the current working directory contains the following files:

Suppose the current working directory contains the following files:
cheese makefile
The contents of makefile is shown in the box to the right.
In the table below are three commands that are run sequentially (one after the other) from the shell. Complete the table by filling in the out- put that is printed to standard out and the names of files that are changed or created.
CSC209H Worksheet: Makefiles (Extra practice)
dinner: pizza salad
pizza: cheese topping.peppers
echo making pizza
cat cheese topping.peppers > pizza
cheese:
echo gooey cheese > cheese
topping.%:
echo yummy $@ > $@
salad:
echo salad is healthy
Command
Output printed to standard output
Names of files created or changed
make salad
make pizza
make dinner