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

📄 makefile

📁 柯老师网站上找到的
💻
字号:
## $Id: Makefile,v 1.19 2000/07/19 22:10:08 haoboy Exp $## by default, just assume latex2html is in the user's pathLATEX2HTML=	latex2htmlL2H_WORKING_DIR = ./l2hWEB_TARGET_DIR = /nfs/web/isi.edu/htdocs/nsnam/ns/docLATEX=          latexBIBTEX=         bibtexDVIPS=          dvipsCP=		/bin/cpRM=		/bin/rmFILES= \	agents.tex \	applications.tex \	basic.tex \	delays.tex \	dynamics.tex \	emulation.tex \	error_model.tex \	everything.tex \	lan.tex \	links.tex \	math.tex \	multicast.tex \	nodes.tex \	otcl.tex \	packet_format.tex \	queue_mgmt.tex \	session.tex \	sim.tex \	srm.tex \	tcp.tex \	timers.tex \	trace.tex \	udp.tex \	undocumented.tex \	unicast.tex \	webcache.tex \	address.tex \	hier-rtg.tex \	mobility.tex \	newnode.tex \	debug.tex \	namtrace.tex \	energymodel.tex \	plm.texall: everything.dvi everything.ps.gz everything.html everything.pdfhtml-pre-process:	$(RM) -rf $(L2H_WORKING_DIR)	mkdir $(L2H_WORKING_DIR)	$(CP) -r *.sty *.tex *.aux *.bib *.bbl *.log figures $(L2H_WORKING_DIR)	cd $(L2H_WORKING_DIR); 	../pre-process.pl .html-process:	cd $(L2H_WORKING_DIR); $(LATEX2HTML) -show_section_numbers everything.texhtml-post-process:	cd $(L2H_WORKING_DIR)/everything; ../../post-process.pl .everything.html: html-pre-process html-process html-post-process	@echo html results are in  $(L2H_WORKING_DIR)/everythingeverything.ps: $(FILES) everything.dvi	dvips -f everything >everything.pseverything.ps.gz: $(FILES) everything.dvi everything.ps	gzip < everything.ps >everything.ps.gzeverything.pdf: $(FILES) everything.ps	ps2pdf everything.pseverything.dvi: $(FILES)	$(LATEX) everything	@if egrep 'Rerun to get' everything.log; then echo 'Relatexing for cross-references.'; $(LATEX) everything; figv: everything.ps $(FILES)	gv everything.psns-doc-auto: everything.ps.gz everything.pdf everything.html	cp everything.ps.gz  $(WEB_TARGET_DIR)/ns_doc.ps.gz	cp everything.pdf $(WEB_TARGET_DIR)/ns_doc.pdf	cp $(L2H_WORKING_DIR)/everything/*.{html,css,gif} $(WEB_TARGET_DIR)

⌨️ 快捷键说明

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