📄 makefile
字号:
## 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -