makefile
来自「pthread的例子程序」· 代码 · 共 18 行
TXT
18 行
all: create mutex join condcreate: thread_create.c gcc -lpthread thread_create.c -o createmutex: thread_mutex.c gcc -lpthread thread_mutex.c -o mutexjoin: thread_join.c gcc -lpthread thread_join.c -o joincond: thread_cond.c gcc -lpthread thread_cond.c -o condclean: rm -f create mutex join cond rm -f *~
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?