makefile
来自「《UNIX进程间通信》中的代码」· 代码 · 共 17 行
TXT
17 行
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 + =
减小字号Ctrl + -
显示快捷键?