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

📄 makefile

📁 unix和linux编程实践教程-源代码
💻
字号:
## Makefile for Chapter 03## Type  make    to compile all the programs# in the chapter #all: fileinfo filesize ls1 ls2clean:	rm -f fileinfo filesize ls1 ls2fileinfo: fileinfo.c 	cc -o fileinfo fileinfo.c filesize: filesize.c 	cc -o filesize filesize.c ls1: ls1.c 	cc -o ls1 ls1.c ls2: ls2.c 	cc -o ls2 ls2.c 

⌨️ 快捷键说明

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