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