$PSPSDK is overridden in the makefile like so
Notice your error "Error= make: psp-config: Command not found" which means the psp-config couldn't be found, and therefore PSPSDK won't be set by the command, which means build.mak won't be found.PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak
If you're sure everything is installed, maybe it's just the exports. You need more than just PSPSDK. Here's what I use for exports (I run Xubuntu 9.04)
Notice that my toolchain and sdk are in my home directory. That makes it easier to install libs and such - no using sudo required.export PSPDEV="/home/jlfenton/Tools/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="$PATH:$PSPPATH"
export PKG_CONFIG_PATH="$PSPDEV/psp/lib/pkgconfig"
Note: I used quotes instead of code tags because the god-damned code tags STILL aren't working right! Are they ever going to fix those??? I reported them as buggy more than a year ago!!!![]()
Bookmarks