| View previous topic :: View next topic |
| Author |
Message |
Wally

Joined: 26 Sep 2005 Posts: 672
|
Posted: Fri Mar 09, 2007 3:38 pm Post subject: SDL Readme File error |
|
|
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 |
|
| Back to top |
|
 |
jimparis
Joined: 10 Jun 2005 Posts: 1179 Location: Boston
|
Posted: Sat Mar 10, 2007 7:08 am Post subject: 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
|
|
|
| Back to top |
|
 |
|