📄 compile_f_c_cxx.test
字号:
#! /bin/sh# Test to make sure rules to invoke all compilers are selected with# mixed source objects.# Matthew D. Langston <langston@SLAC.Stanford.EDU>. $srcdir/defs || exit 1cat >> configure.in << 'END'AC_PROG_CCAC_PROG_CXXAC_PROG_F77AC_F77_LIBRARY_LDFLAGSENDcat > Makefile.am << 'END'bin_PROGRAMS = foofoo_SOURCES = foo.f bar.c baz.ccfoo_LDADD = @FLIBS@END: > foo.f: > bar.c: > baz.cc$AUTOMAKE || exit 1# Look for the macros at the beginning of rules. Be careful, as there# are literal tabs at the beginning of the search strings.grep ' \$(COMPILE)' Makefile.in || exit 1grep ' \$(CXXCOMPILE)' Makefile.in || exit 1grep ' \$(F77COMPILE)' Makefile.in || exit 1exit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -