makefile

来自「介绍和编写和IO重定向的使用」· 代码 · 共 34 行

TXT
34
字号
## 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 + =
减小字号Ctrl + -
显示快捷键?