📄 makefile
字号:
## Makefile for Chapter 14## Type make to compile all the programs# in the chapter #all: hello_multi hello_single incprint tanimate tbounce1d \ twc1 twc2 twc3 twc4 twebservclean: rm -f hello_multi hello_single incprint tanimate tbounce1d \ twc1 twc2 twc3 twc4 twebservhello_multi: hello_multi.c -lpthread cc -o hello_multi hello_multi.c -lpthreadhello_single: hello_single.c cc -o hello_single hello_single.cincprint: incprint.c -lpthread cc -o incprint incprint.c -lpthreadtanimate: tanimate.c -lcurses -lpthread cc -o tanimate tanimate.c -lcurses -lpthread tbounce1d: tbounce1d.c -lcurses -lpthread cc -o tbounce1d tbounce1d.c -lcurses -lpthread twc1: twordcount1.c -lpthread cc -o twc1 twordcount1.c -lpthreadtwc2: twordcount2.c -lpthread cc -o twc2 twordcount2.c -lpthreadtwc3: twordcount3.c -lpthread cc -o twc3 twordcount3.c -lpthreadtwc4: twordcount4.c -lpthread cc -o twc4 twordcount4.c -lpthreadtwebserv: twebserv.c socklib.c -lpthread cc -o twebserv twebserv.c socklib.c -lpthread
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -