makefile
来自「关于web server、进程间通信、shell编程的经典源代码」· 代码 · 共 56 行
TXT
56 行
## Makefile for Chapter 07## Type make to compile all the programs# in the chapter #all: bounce1d bounce2d bounce_aio bounce_async hello1 \ hello2 hello3 hello4 hello5 sigactdemo sigdemo3 \ sleep1 ticker_democlean: rm -f bounce1d bounce2d bounce_aio bounce_async hello1 \ hello2 hello3 hello4 hello5 sigactdemo sigdemo3 \ sleep1 ticker_demobounce1d: bounce1d.c set_ticker.c -lcurses cc -o bounce1d bounce1d.c set_ticker.c -lcursesbounce2d: bounce2d.c set_ticker.c -lcurses cc -o bounce2d bounce2d.c set_ticker.c -lcursesbounce_aio: bounce_aio.c set_ticker.c -lrt -lcurses cc -o bounce_aio bounce_aio.c set_ticker.c -lrt -lcursesbounce_async: bounce_async.c set_ticker.c -lcurses cc -o bounce_async bounce_async.c set_ticker.c -lcurseshello1: hello1.c -lcurses cc -o hello1 hello1.c -lcurseshello2: hello2.c -lcurses cc -o hello2 hello2.c -lcurseshello3: hello3.c -lcurses cc -o hello3 hello3.c -lcurseshello4: hello4.c -lcurses cc -o hello4 hello4.c -lcurseshello5: hello5.c -lcurses cc -o hello5 hello5.c -lcursessigactdemo: sigactdemo.c cc -o sigactdemo sigactdemo.csigdemo3: sigdemo3.c cc -o sigdemo3 sigdemo3.csleep1: sleep1.c cc -o sleep1 sleep1.c ticker_demo: ticker_demo.c cc -o ticker_demo ticker_demo.c
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?