=== Compile a Sample ===
If you come across a build error like <code>No rule to make target `/lib/build.mak'. Stop.</code> then you have a path issue. Above that line is probably something like <code>make: psp-config: Command not found</code>. This is indicating a path issue. The program psp-config.exe is in the <code>devkitPro\devkitPSP\bin</code> folder and simply outputs different values depending on the parameter passed in. For the PSP SDK samples, it's executing <code>psp-config --pspsdk-path</code> which gives the full path for the SDK folder. The makefile then adds /lib/build.mak onto this path to get the full makefile (which will then link all the other needed libraries and so on).