Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

makefile

killabee
Beginner
665 Views
hello everybody!

I've got a makefile but I don't what to do with it.
How can I involve it in a compile process.

I'm using the Visual Fortran Compiler.

Thanks
0 Kudos
2 Replies
alcala
Beginner
665 Views
Could you write, what are you going to do? I don't understand.
0 Kudos
TimP
Honored Contributor III
665 Views
If the makefile is portable (e.g. to various OS) you would install GNU make, if you don't have it already. cygwin and mingw include GNU make. If it meant for a particular non-standard Windows make program, you will need to install that one, or fix it. If you installed Visual Studio, you should have NMAKE, so that is the most likely one for a makefile which is intended to work only on Windows.
If the makefile is intended for a compiler other than the one you are using, you must study it to see whether it is set up to allow you to specify your compiler, e.g.
make FC=ifort -nf makefile
would display the commands which would be executed by invoking make without the n option, if it is set up in the most usual way.
0 Kudos
Reply