⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 compile_f_c_cxx.test

📁 这是一个自动生成MAKEFILE的工具。相信大家都听说过。在LINUX工程项目里是很好的帮手。希望对大家有点帮助。
💻 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 + -