📄 makefile
字号:
## Makefile for Chapter 10## Type make to compile all the programs# in the chapter #all: listargs pipe pipedemo pipedemo2 stdinredir1 stdinredir2 whotofileclean: rm -f listargs pipe pipedemo pipedemo2 stdinredir1 stdinredir2 whotofilelistargs: listargs.c cc -o listargs listargs.cpipe: pipe.c cc -o pipe pipe.cpipedemo2: pipedemo2.c cc -o pipedemo2 pipedemo2.cpipedemo: pipedemo.c cc -o pipedemo pipedemo.cstdinredir1: stdinredir1.c cc -o stdinredir1 stdinredir1.cstdinredir2: stdinredir2.c cc -o stdinredir2 stdinredir2.cwhotofile: whotofile.c cc -o whotofile whotofile.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -