makefile

来自「understanding unixlinux source code」· 代码 · 共 40 行

TXT
40
字号
## Makefile for Chapter 11## Type  make    to compile all the programs# in the chapter #all: popen popen_ex3 popendemo rls rlsd testbdp timeclnt timeserv tinybcclean:	rm -f popen popen_ex3 popendemo rls rlsd testbdp timeclnt timeserv tinybcpopen: popen.c	cc -o popen popen.cpopen_ex3: popen_ex3.c	cc -o popen_ex3 popen_ex3.cpopendemo: popendemo.c	cc -o popendemo popendemo.crls: rls.c	cc -o rls rls.crlsd: rlsd.c	cc -o rlsd rlsd.ctestbdp: testbdp.c	cc -o testbdp testbdp.ctimeclnt: timeclnt.c	cc -o timeclnt timeclnt.ctimeserv: timeserv.c	cc -o timeserv timeserv.ctinybc: tinybc.c	cc -o tinybc tinybc.c

⌨️ 快捷键说明

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