Hello, I have a quick question.
How do I go about compiling the DoomPSP.05 plus souce code? As in, is there any specific libraries that I need? I think I need the SDL Library to compile it but im not sure how to get that, (SVN commands do not work for me). Also is there any thing else needed to compile it? Im currently using DevCPP but I noticed a couple of Visual C++ specific files around the source and Im not sure if the IDE matters here. So has any body had any luck with compiling DoomPSP?
Thank you for your time.
Compiling DoomPSP
-
- Posts: 11
- Joined: Fri Mar 02, 2007 5:06 pm
- Contact:
Compiling DoomPSP
Programmer van der C
Hi, BlackShark. Recently I compiled DoomPSP.
At first you need install timidity lib witch delivered with DoomPSP sources.
For that you need add to file DommPSP/src/libtimidity-0.1.0/src/makefile
line PSPSDK=$(shell psp-config --pspsdk-path)
before include $(PSPSDK)/lib/build.mak
Then type in this folder:
make
make install
Then you can type
make
in DoomPSP/src
At first you need install timidity lib witch delivered with DoomPSP sources.
For that you need add to file DommPSP/src/libtimidity-0.1.0/src/makefile
line PSPSDK=$(shell psp-config --pspsdk-path)
before include $(PSPSDK)/lib/build.mak
Then type in this folder:
make
make install
Then you can type
make
in DoomPSP/src
-
- Posts: 11
- Joined: Fri Mar 02, 2007 5:06 pm
- Contact:
Thank you Very much :)
Ill go try that.
EDIT: mmm, Im getting an error,
I know im in the right directory, is it something in the Makefile? Ill check it out in there but if you know please tell me, Thanks[/b][/color]
Ill go try that.
EDIT: mmm, Im getting an error,
Code: Select all
make: *** C://pspdev/psp/sdk/: is a directory. Stop.
Programmer van der C