📄 makefile
字号:
include ../Make.defines
PROGS = mainpipe mainfifo
all: ${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 + -