📄 makefile
字号:
include ../Make.defines
PROGS = client_main server_main
all: ${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
${CC} ${CFLAGS} -o $@ server_main.o server.o \
mesg_recv.o mesg_send.o ${LIBS}
clean:
rm -f ${PROGS} ${CLEANFILES}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -