does someone know a shell extension for windows that add a option to start "make","make clean","make rebuild","usbhostfs_pc" and "pspsh" from the context menu.
I HATE THE COMAND PROMPT!!!
GNU make pspsdk shell extension
GNU make pspsdk shell extension
Last edited by jojojoris on Sat Feb 28, 2009 6:26 am, edited 1 time in total.
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}
i just made one myself
if you want to use this one make sure you change the paths to the executables.
Code: Select all
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\psp-make]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\psp-make\command]
@="cmd /K c:\\pspsdk\\bin\\make.exe"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\psp-make clean]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\psp-make clean\command]
@="c:\\pspsdk\\bin\\make.exe clean"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\pspsh]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\pspsh\command]
@="c:\\pspsdk\\bin\\pspsh.exe"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\usbhostfs_pc]
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Unknown\shell\usbhostfs_pc\command]
@="c:\\pspsdk\\bin\\usbhostfs_pc.exe"
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}
I know i use eclipse (because of it's portability). But it was becouse i sometimes need to recompile a project and i am too lazy to setup a whole eclipse project. :PTorch wrote:You really ought to be just using an IDE. CodeBlocks is excellent with autocompletion and painless to setup with cygwin.
Visual Studio is the ultimate if you manage to set it up.
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}