Compiling and Linking a Single Source File

The following command compiles x.for, links, and creates an executable file named x.exe. This command generates a temporary object file, which is deleted after linking:

   DF x.for

To name the executable file, specify the /exe option:

   DF x.for /exe:myprog.exe

Alternatively, you can name the executable file by using the linker /out option:

   DF x.for /link /out:myprog.exe