makefile
来自「关于web server、进程间通信、shell编程的经典源代码」· 代码 · 共 45 行
TXT
45 行
## 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 + =
减小字号Ctrl + -
显示快捷键?