📄 makefile
字号:
############################################################ An example source module to accompany...## "Using POSIX Threads: Programming with Pthreads"# by Brad nichols, Dick Buttlar, Jackie Farrell# O'Reilly & Associates, Inc.############################################################# ident/makefile#CC = ccCFLAGS = -std1 -warnprotos -g THREAD_CFLAGS = ${CFLAGS} -pthreadall : tident exit_status exit_status_alternativetident: tident.o ${CC} ${THREAD_CFLAGS} tident.o -o tidentexit_status: exit_status.o ${CC} ${THREAD_CFLAGS} exit_status.o -o exit_statusexit_status_alternative: exit_status_alternative.o ${CC} ${THREAD_CFLAGS} exit_status_alternative.o -o exit_status_alternativeclean : rm -f *.o *~ *# core \ tident exit_status exit_status_alternative
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -