makemake file

Hi,

I need to create make file in order to run a c++ project and I want to write a makemake file.

So, I'm looking for a good tutorial or example for makemake file.
I also want to know how to run this kind of file.

Thank's

The only makemake I have seen is perl code that creates a makefile, it was for FORTRAN.

If there is one for C++, Google for "makemake C++"

"google for makemake c++"... this is the best answer I could get!!!. I never thought about google before!!! Now all my problems solved!!!

If you dont have anything clever to say, Don't say!!!

I think jim's reply was a sincere one with no strings attached.

itaihor, the rules say

(1) No flames, shouting (all caps), sarcasm, bullying, profanity or arrogant posts. 

(2) No negative comments about others or impolite remarks. Be patient. 

Pls ignore, it is not fit for this thread

Hi friends

my C code is

int main()
{
system("cp <source> <destination>");
}

my question is
how to set variables for <source> and <destination>
how can we pass it to system() call.

can you suggest me
thankyou
kingskar