📄 makefile
字号:
##########################
#
# Build UNIX UDP send executable
#
CC = gcc
CFLAGS = -Wall
.PHONY : all clean tarball
all : unix_udp_send
clean :
rm -f *.o unix_udp_send *~ core*
tarball :
tar cvf ../unix-udp.tar Makefile *.c
# -----------------------------------------------
unix_udp_send : unix_udp_send.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -