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

📄 makefile

📁 早期freebsd实现
💻
字号:
## @(#)Makefile	2.3 88/08/11 4.0 RPCSRC##RPCCOM = rpcgenLIB = -lrpclibDESTDIR=CFLAGS= -OLDFLAGS=HDRS= klm_prot.h mount.h nfs_prot.h nlm_prot.h rex.h rquota.h rnusers.h\      rquota.h rstat.h sm_inter.h spray.h yppasswd.h yp.hXFILES= bootparam_prot.x klm_prot.x mount.x nfs_prot.x nlm_prot.x \      rex.x rnusers.x rquota.x rstat.x sm_inter.x spray.x yppasswd.x yp.xBIN= rstatSVCBIN= rstat_svcGEN= rstat_clnt.c rstat_svc.c rstat_xdr.call:	$(HDRS) $(BIN) $(SVCBIN)install: $(HDRS) $(XFILES)	@echo "Creating RPC service headers directory"	-mkdir ${DESTDIR}/usr/include/rpcsvc && \		chown bin ${DESTDIR}/usr/include/rpcsvc && \		chmod 755 ${DESTDIR}/usr/include/rpcsvc	@echo "Installing RPC service header and definition files"	for i in $(HDRS) $(XFILES); do \		(install -c -m 644 $$i ${DESTDIR}/usr/include/rpcsvc) done	-mkdir ${DESTDIR}/etc && chown bin ${DESTDIR}/etc && \		chmod 755 ${DESTDIR}/etc	@echo "Installing ${SVCBIN} in ${DESTDIR}/etc"	@set -x;for i in ${SVCBIN}; do \		(install -c -s $$i ${DESTDIR}/etc/$$i); done	@echo "Installing ${BIN} in ${DESTDIR}/usr/bin"	@set -x;for i in ${BIN}; do \		(install -c -s $$i ${DESTDIR}/usr/bin/$$i); donerstat_svc: rstat_proc.o rstat_svc.o rstat_xdr.o	$(CC) $(LDFLAGS) -o $@ rstat_proc.o rstat_svc.o rstat_xdr.o $(LIB)rstat: rstat.o rstat_clnt.o rstat_xdr.o	$(CC) $(LDFLAGS) -o $@ rstat.o rstat_clnt.o rstat_xdr.o $(LIB)rstat.c rstat_proc.c:	rstat.hklm_prot.h:	klm_prot.x	$(RPCCOM) -h klm_prot.x -o $@mount.h:	mount.x	$(RPCCOM) -h mount.x -o $@nfs_prot.h:	nfs_prot.x	$(RPCCOM) -h nfs_prot.x -o $@nlm_prot.h:	nlm_prot.x	$(RPCCOM) -h nlm_prot.x -o $@rex.h:	rex.x	$(RPCCOM) -h rex.x -o $@rnusers.h:	rnusers.x	$(RPCCOM) -h rnusers.x -o $@rquota.h:	rquota.x	$(RPCCOM) -h rquota.x -o $@rstat.h:	rstat.x	$(RPCCOM) -h rstat.x -o $@sm_inter.h:	sm_inter.x	$(RPCCOM) -h sm_inter.x -o $@spray.h:	spray.x	$(RPCCOM) -h spray.x -o $@yp.h:	yp.x	$(RPCCOM) -h yp.x -o $@yppasswd.h:	yppasswd.x	$(RPCCOM) -h yppasswd.x -o $@rstat_clnt.c:	rstat.x	$(RPCCOM) -l rstat.x -o $@rstat_svc.c:	rstat.x	$(RPCCOM) -s udp rstat.x -o $@rstat_xdr.c:	rstat.x	$(RPCCOM) -c rstat.x -o $@clean cleanup:	rm -f *.o $(GEN) $(BIN) $(SVCBIN)

⌨️ 快捷键说明

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