Thank you very much for putting together this guide; I was having a lot of trouble with PSPtoolchain, endless install errors.
I'm having a problem with this though, and I've done a bunch of things to try and solve it. The error I get now is "/lib/build.mak:24: *** missing separator. Stop.".
This is my makefile
And this is my start.batCode:PSPSDK = $(shell psp-config --pspsdk-path)
TARGET = controller_basic
OBJS = main.o
INCDIR =
CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)
LIBDIR =
LDFLAGS =
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = Basic controller sample
include $(PSPSDK)/lib/build.mak
I've added the PATH variables manually already, they weren't working before. It kept adding a space before '/bin' in one of the paths, and that messed it up.Code:cd C:\pspdev\psp\sdk\samples\controller\basic
make
cmd
Any and all help is greatly appreciated.