makefile

来自「Porting the Simple Sockets Library Dr. C」· 代码 · 共 20 行

TXT
20
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?