コンパイル オプションは (私の知る限り) ベンダー固有であるため、makefile で指定する必要があります。
if FC=ifort
FFLAGS=<long list of options provided by intel>
else
if FC=gfortran
FFLAGS=<same list in gnu way>
end if
汎用オプションを指定する方法はありますか? つまり、オプションを指定するベンダーに依存しない方法です。を使用して作成してもかまいませんautotools(i.e. autoconf, automake)
。しかし、方法はありますか?