makefile

来自「linux 多线程例子」· 代码 · 共 28 行

TXT
28
字号
############################################################ 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 + =
减小字号Ctrl + -
显示快捷键?