📄 makefile
字号:
# Makefile for the Simple Socket Library's EXAMPLES# Note: not all the programs may build on your system,# (the oob*.c ones in particular)# EXES: list of executables to be made# Note: not all of these may compile correctly,# ie. oobrecv/oobsend, which have BSD-Unix# dependenciesEXES = smsrvr smclient multiskt sktpoll sktsig oobrecv oobsend talksrvr talkclient# to convert C into executables.c: $(CC) $(CFLAGS) $(LDFLAGS) $< $(LOADLIBES) -o $@# make all executablesall : $(EXES)clean : /bin/rm -f *.o *.bak *.err $(EXES)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -