makefile
来自「《UNIX进程间通信》中的代码」· 代码 · 共 17 行
TXT
17 行
include ../Make.definesPROGS = client_main server_mainall: ${PROGS}client_main: client_main.o client.o mesg_recv.o mesg_send.o ${CC} ${CFLAGS} -o $@ client_main.o client.o \ mesg_recv.o mesg_send.o ${LIBS}server_main: server_main.o server.o mesg_recv.o mesg_send.o sigchldwaitpid.o ${CC} ${CFLAGS} -o $@ server_main.o server.o \ mesg_recv.o mesg_send.o sigchldwaitpid.o ${LIBS}clean: rm -f ${PROGS} ${CLEANFILES}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?