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

📄 empty.test

📁 这是一个自动生成MAKEFILE的工具。相信大家都听说过。在LINUX工程项目里是很好的帮手。希望对大家有点帮助。
💻 TEST
字号:
#! /bin/sh# Test for bug where if the list of installables is empty, invalid sh# code is generated.. $srcdir/defs || exit 1cat > Makefile.am << 'END'data_DATA =END$AUTOMAKE || exit 1# Create configure so Makefile doesn't look out-of-date.echo frob > configure.acecho frob > configureecho frob > config.status# Need a mkinstalldirs we can actually execute.  make on my Linux box# won't execute this file if is empty, or has just a colon in it (but# it will run from the shell).cat > mkinstalldirs << 'END'#!/bin/shENDchmod +x mkinstalldirs# Substitute variables we need.sed -e 's,@SHELL@,/bin/sh,g' -e 's/@srcdir@/./g' \   -e 's/@top_srcdir@/./g' -e 's/@datadir@/./g' \   -e 's/@CONFIGURE_AC@/configure.ac/g' \   < Makefile.in > Makefile$MAKE install

⌨️ 快捷键说明

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