エラー: `make` コマンドの後の式 (1) に右括弧が必要です

エラー: `make` コマンドの後の式 (1) に右括弧が必要です

私は次のソフトウェアをコンパイルしていますこのチュートリアル(PRESTO と呼ばれます) と入力すると./configure、次のメッセージが表示されます。

$ make && sudo make install
Making all in src
make[1]: enter directory "/home/user/Softwares/tempo/src"
/usr/bin/f77  -g -O2 -c -o bnryddfwhiecc.o bnryddfwhiecc.f
bnryddfwhiecc.f:130:71: Error: Expected a right parenthesis in expression at (1)
Makefile:468: set of instructions for the objective "bnryddfwhiecc.o" failed 
make[1]: *** [bnryddfwhiecc.o] Error 1
make[1]: exit directory "/home/user/Softwares/tempo/src"
Makefile:359: set of instructions for the objective "all-recursive" failed
make: *** [all-recursive] Errore 1

これはコード内の行が長すぎることに関係していると思います。&基本的に、次の行の6番目の列、つまり長い行の終わりの直後に文字を追加しようとしました。ここで言われていること、しかし動作しませんでした。

各ファイルの各行を変更するのではなく、コマンドを使用して長い行のエラーを無効にしたいのですが、アクションを実行するのに十分な知識がありません。

関連情報