flibs.test

来自「LINUX下的源码工具,可自己分析,或者直接装在系统上作为应用」· TEST 代码 · 共 38 行

TEST
38
字号
#! /bin/sh# Make sure `AC_F77_LIBRARY_LDFLAGS' works properly.# Matthew D. Langston <langston@SLAC.Stanford.EDU>. $srcdir/defs || exit 1cat >> configure.in << 'END'AC_PROG_F77AC_F77_LIBRARY_LDFLAGSEND# Tue Aug 11 09:50:48 1998  Matthew D. Langston  <langston@SLAC.Stanford.EDU>## This test currently fails with automake v. 1.3 since automake assumes# that elements of `bin_PROGRAMS' (e.g. zardoz) without a corresponding# `_SOURCES' (e.g. zardoz_SOURCES) should be compiled from `zardoz.c'# whether or not `zardoz.c' actually exists.  For example, even if the# file `zardoz.c' doesn't exist but the file `zardoz.f' does exist, this# tests would still fail.## Therefore, for now I have put in the line `zardoz_SOURCES = zardoz.f'# (see below) so that automake's top-level `make check' won't fail, but# this line should be removed once automake handles this situation# correctly.cat > Makefile.am <<'END'bin_PROGRAMS = zardozzardoz_SOURCES = zardoz.fzardoz_LDADD = @FLIBS@END: > zardoz.f$AUTOMAKE || exit 1grep '@FLIBS@' Makefile.in

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?