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

📄 makefile

📁 the source code from the book "UNIX Network Programming" by W. Richard Stevens. i hope it is useful
💻
字号:
#BIN = date_svc rdateGEN = date_clnt.c date_svc.c date.hLIB = ../librpclib.aRPCCOM = /usr1/stevens/bin/rpcgenCFLAGS = -I.. -Oall: $(BIN)$(GEN):		date.x		$(RPCCOM) date.xdate_svc:	date_proc.o date_svc.o		$(CC) -o $@ date_proc.o date_svc.o $(LIB)rdate:		rdate.o date_clnt.o		$(CC) -o $@ rdate.o date_clnt.o $(LIB)rdate.o:	rdate.c date.hdate_proc.o:	date_proc.c date.hclean:		rm -f $(GEN) *.o $(BIN)

⌨️ 快捷键说明

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