ok so im working with Dev-C++ 4.9.9.2 and im running Windaz XP SP2
here is my code...

Code:
#include <windows.h>

int WINAPI
WinMain(HINSTANCE hInst, 
	HINSTANCE hPrevInstance,
	LPSTR lpCmdLine,
        int nCmdShow)
{
	MessageBox (NULL, "Hello World!", 
                "YOOOOOO", MB_OK);
	return 0;
}
it is giving me this error when i try to compile and run...

The system cannot find the file specified

and here is my compile log...

Code:
Compiler: Default compiler
Building Makefile: "C:\Temp\Nathan\Programming\C\FirstWindows\Makefile.win"
Executing  make...
make.exe -f "C:\Temp\Nathan\Programming\C\FirstWindows\Makefile.win" all
Execution terminated

what is happening??? how to solve this????????
thanks in advance!!!!!!!!!!!!