⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 让你了解Unix进程间的通信是如何实现的
💻
字号:
include ../Make.definesPROGS =	mainpipe mainfifoall:	${PROGS}mainpipe:	mainpipe.o client.o server.o mesg_send.o mesg_recv.o		${CC} ${CFLAGS} -o $@ mainpipe.o client.o server.o \			mesg_send.o mesg_recv.o ${LIBS}mainfifo:	mainfifo.o client.o server.o mesg_send.o mesg_recv.o		${CC} ${CFLAGS} -o $@ mainfifo.o client.o server.o \			mesg_send.o mesg_recv.o ${LIBS}clean:		rm -f ${PROGS} ${CLEANFILES}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -