找不到 g77 命令

make g77 command not found

我正在尝试做一个项目:

https://www.cs.virginia.edu/stream/FTP/Code/

它报告:

make: g77 command not found.

我在 Makefile 中看到了这一行:

FF = g77

我可以将此处的 'g77' 更改为其他内容以在当前 OS 中编译吗,例如:Ubuntu 18.04?

改变

FF = g77 

FF = gfortran 

有效。