link_f_only.test
来自「这是一个自动生成MAKEFILE的工具。相信大家都听说过。在LINUX工程项目里」· TEST 代码 · 共 33 行
TEST
33 行
#! /bin/sh# Test to make sure the Fortran 77 linker is used when appropriate.# Matthew D. Langston <langston@SLAC.Stanford.EDU>. $srcdir/defs || exit 1cat >> configure.in << 'END'AC_PROG_F77ENDcat > Makefile.am << 'END'bin_PROGRAMS = lavalamplavalamp_SOURCES = lamp.fEND: > lamp.f$AUTOMAKE || exit 1# We should only see the Fortran linker in the rules of `Makefile.in'.# Look for this macro not at the beginning of any line; that will have# to be good enough for now.grep '.\$(F77LINK)' Makefile.in || exit 1# We should not see these patterns:grep '.\$(CXXLINK)' Makefile.in && exit 1grep '.\$(LINK)' Makefile.in && exit 1exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?