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

📄 mkdep.sh

📁 Apache V2.0.15 Alpha For Linuxhttpd-2_0_15-alpha.tar.Z
💻 SH
字号:
#!/bin/sh## 1) remove everything after the DO NOT REMOVE# 2) generate the dependencies, adding them to the end of Makefile.new# 3) move the Makefile.new back into place## Note that we use && to ensure that Makefile is not changed if an error# occurs during the process#sed -ne '1,/^# DO NOT REMOVE/p' Makefile > Makefile.new \    && gcc -MM  $* | sed -e "s/\.o:/\.lo:/" >> Makefile.new \    && mv Makefile.new Makefile

⌨️ 快捷键说明

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