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

📄 makefile

📁 站点映像程序
💻
字号:
#### Copyright (C) 1990 - 1998   Lee McLoughlin## Permission to use, copy, and distribute this software and its# documentation for any purpose with or without fee is hereby granted,# provided that the above copyright notice appear in all copies and# that both that copyright notice and this permission notice appear# in supporting documentation.## Permission to modify the software is granted, but not the right to# distribute the modified code.  Modifications are to be distributed# as patches to released version.## This software is provided "as is" without express or implied warranty.###WEBFILES = \	index.html \	mirror.html mirror.txt \	quickstart.html quickstart.txt \	mm.html copyright.html mirror-faq.html \	Lake.class mirror-on-dusk.gif \	CHANGES-since-2.8.txt FILES=	README.txt \	mirror.pl \	lsparse.pl dateconv.pl ftp.pl lchat.pl \	install.pl \	makefile \	mirror.defaults \	mirror.nightly socket.ph socket.ph-solaris \	mm.pl pkgs_to_mmin.pl mmin \	prune_logs.pl do_unlinks.pl \	support/cyber-patches support/lstest.pl \	packages/sunsite.org.uk \	logs/ \	mirror.man mm.man \	$(WEBFILES)all:	echo try make mirror.tarmirror.tar: $(FILES)	rev=`./mirror.pl -v | perl -ane 'print "$$F[2]\n";'`; echo $rev; \		tar czvf mirror-$$rev.tar.gz $(FILES)mirror.zip: $(FILES)	rev=`./mirror.pl -v | perl -ane 'print "$$F[2]\n";'`; echo $rev; \		rm -f mirror-$$rev.zip ; \		zip  mirror-$$rev.zip $(FILES)mirror.shar: $(FILES)	rev=`./mirror.pl -v | perl -ane 'print "$$F[2]\n";'`; echo $rev; \		shar $(FILES) > mirror-$$rev.sharci:	checkin $(FILES)#  install, clean ...# mode to install .pl filesPLMODE = 644# mode to install executablesEXMODE = 755# group to own all the filesGRP = gnu# directory to install .pl (perl library) filesPLDIR = /usr/local/perl5/lib/perl5# directory to install public executablesBINDIR = /usr/local/sbin# directory to install man pagesMANDIR = /usr/local/man/man1install:	install -m $(PLMODE) -g $(GRP) lchat.pl $(PLDIR)	install -m $(PLMODE) -g $(GRP) dateconv.pl $(PLDIR)	install -m $(PLMODE) -g $(GRP) ftp.pl $(PLDIR)	install -m $(PLMODE) -g $(GRP) lsparse.pl $(PLDIR)	install -m $(EXMODE) -g $(GRP) mirror.pl $(BINDIR)/mirror	install -m $(EXMODE) -g $(GRP) do_unlinks.pl $(BINDIR)/do_unlinks	install -m $(EXMODE) -g $(GRP) pkgs_to_mmin.pl $(BINDIR)/pkgs_to_mmin	install -m $(EXMODE) -g $(GRP) mm.pl $(BINDIR)/mirror-master	install -m $(PLMODE) -g $(GRP) mirror.man $(MANDIR)/mirror.1	install -m $(PLMODE) -g $(GRP) mm.man $(MANDIR)/mirror-master.1# directory to install .pl (perl library) files for rperlRPLDIR = /usr/local/rperl5/lib/perl5rinstall:	sed 's/^\#!\/bin\/perl5/\#!\/bin\/rperl5/g' < mirror.pl > rmirror.pl	install -m $(PLMODE) -g $(GRP) lchat.pl $(RPLDIR)	install -m $(PLMODE) -g $(GRP) dateconv.pl $(RPLDIR)	install -m $(PLMODE) -g $(GRP) ftp.pl $(RPLDIR)	install -m $(PLMODE) -g $(GRP) lsparse.pl $(RPLDIR)	install -m $(EXMODE) -g $(GRP) rmirror.pl $(BINLDIR)/mirror	install -m $(EXMODE) -g $(GRP) do_unlinks.pl $(BINDIR)/do_unlinks	install -m $(EXMODE) -g $(GRP) pkgs_to_mmin.pl $(BINDIR)/pkgs_to_mmin	install -m $(EXMODE) -g $(GRP) mm.pl $(BINDIR)/mirror-master	install -m $(PLMODE) -g $(GRP) mirror.man $(MANDIR)/mirror.1	install -m $(PLMODE) -g $(GRP) mm.man $(MANDIR)/mirror-master.1

⌨️ 快捷键说明

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