Not sure of your experience with coding, paths etc.. so dont mean to insult your intellegence, so I'll try to help with what I think it could be.
I don't think it is actually a PATH problem because you usually type "make" (which DOES need to be in the path) in the folder that contains the makefile of the source you want to compile. You aren't getting an error such as :
Code: Select all
c:\Documents and Settings\HaQue
'make' is not recognized as an internal or external command,
operable program or batch file.
so make is being correctly found via the PATH variables.
also imagine if the makefile was allowed to be found just by the PATH statement. As soon as there were 2 or more makefiles ANYWHERE in the path variables, the make program wouldn't know which one you wanted!
So:
Is the makefile in "c:\PSPDev\" or a subfolder &
is your .c files in "c:\PSPDev" or a subfolder? If so you will need to cd to that folder first.
eg for:
c:\PSPDev\mysource\makefile
c:\PSPDev\mysource\main.c
if that doesnt help, try posting your folder structure for Devving and also the location of your sourcecode and makefile and I'll try to help.
Good Luck!
HaQue