So normally the way you run make is you just run
make
It searches for a file Makefile
in the current directory and runs it. Yay! Sometimes, you want to make something in a subdirectory. You could type
cd subproject && make
But that's annoying, so make lets you do