Drene said:
in a manual i read, i learned that after compiling the src .c files would change into .o
Well, yes. First the compiler takes every source file and converts it into a binary .o file. But then the linker takes all of those .o files and converts them into your final executable. After that you don't need the .o files anymore so they might just be removed.
Quote:
is it compulsory for it to change to .o
In general it is not required. It is possible to go directly from source files to the final executable by doing compilation and linking in the same step without intermediate files. I don't know how your build script is configured, though, so I can't say whether you should be getting them for your particular case.
Quote:
i believeam supposed to have another smaug.exe
If you don't have smaug.exe, what are you running?