I am attempting to compile and run a Fortran 90 program using command line (bash). In the past, when I've run gfortran /path/to/file, a file a.out and a file program_name are created, and I can run the program by using ./program_name in the command line. For reasons I don't understand, the program_name file is no longer being created, and therefore when I attempt to run ./program_name, I get an error message No such file or directory. It does not appear to matter which .f90 file I use; I get the same results.
How do I get the program to compile properly so that I can run it?