📄 mkdep.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 + -