⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 unix网络编程卷1:套接口API的全书源码
💻
字号:
include ../Make.defines# Note: In the source code in this directory I #ifdef the constants# IPv4, IPv6 (both lowercase "v"), and UNIXdomain.  This is instead of# the all-uppercase constants so that these #ifdef/#endif lines do not# appear in the book (too much clutter, given the amount of conditional# testing for all the code in this directory).all:	${LIBGAI_OBJS}		ar rv ${LIBUNP_NAME} $?		${RANLIB} ${LIBUNP_NAME}PROGS = testga test1testga:	testga.o		${CC} ${CFLAGS} -o $@ testga.o ${LIBS}test1:	test1.o		${CC} ${CFLAGS} -o $@ test1.o ${LIBS}clean:		rm -f ${PROGS} ${CLEANFILES}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -