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

📄 makefile

📁 网络数据管理协议的开发
💻
字号:
############################ -*- Mode: Makefile -*- ############################# Makefile## ## Description     : NDMP library Makefile## ## Copyright (c) 1996,1997 PDC, Network Appliance. All Rights Reserved.#### $Id: Makefile,v 1.6 1998/02/09 06:51:35 tim Exp $## ###############################################################################.KEEP_STATE:CC = gccCFLAGS = -g -Wall -W -Wstrict-prototypesSRCS = log.c comm.c md5c.c ndmp_xdr.cOBJS = $(SRCS:.c=.o)all: libndmp.a ndmp.hlibndmp.a: $(OBJS)	ar rv $@ $?ndmp.h: ndmp.x	rpcgen -C -h -o $@ ndmp.xndmp_xdr.c: ndmp.x	rpcgen -c -o $@ ndmp.xndmp_xdr.o: ndmp_xdr.c ndmp.h	$(CC) -c -g ndmp_xdr.c${OBJS}: ndmp.htags:	etags -t *.[ch]clean:	rm -f libndmp.a *.o core *~ TAGS .make.state ndmp.h ndmp_xdr.c

⌨️ 快捷键说明

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