Guys,
This had me stumped but i figured it out
The clipping below does not have a source for the PSPSDK folder
Building applications
---------------------
Write your source file as you would a normal SDL program. Use the standard
Makefile as supplied with any PSPSDK sample program. Above the final "include"
line, add:
PSPBIN = $(PSPSDK)/../bin
CFLAGS += $(shell $(PSPBIN)/sdl-config --cflags)
LIBS += $(shell $(PSPBIN)/sdl-config --libs)
I found that the PSPSDK was not declared making a whole heap of errors, this probably stumped other people too.
Cheers
Wally
SDL Readme File error
Re: SDL Readme File error
wally4000 wrote:The clipping below does not have a source for the PSPSDK folder
Building applications
---------------------
Write your source file as you would a normal SDL program. Use the standard
Makefile as supplied with any PSPSDK sample program. Above the final "include"
line, add:
/usr/local/pspdev/psp/sdk/samples/gu/copy/Makefile wrote:PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak