📄 makefile
字号:
# Simple makefile to control SGML generation for the entire document tree.# This should be used from the top-level directory (Doc/), not the directory# that actually contains this file:## $ pwd# .../Doc# $ make -f tools/sgmlconv/MakefileTOPDIR=.TOOLSDIR=toolsSGMLRULES=../$(TOOLSDIR)/sgmlconv/make.rulesSUBDIRS=api ext lib mac ref tutSUBMAKE=$(MAKE) -f $(SGMLRULES) TOOLSDIR=../$(TOOLSDIR)all: xml.PHONY: sgml xml.PHONY: $(SUBDIRS)sgml: for DIR in $(SUBDIRS) ; do \ (cd $$DIR; $(SUBMAKE) sgml) || exit $$? ; donexml: for DIR in $(SUBDIRS) ; do \ (cd $$DIR; $(SUBMAKE) xml) || exit $$? ; doneesis: for DIR in $(SUBDIRS) ; do \ (cd $$DIR; $(SUBMAKE) esis) || exit $$? ; donetarball: sgml tar cf - sgml tools/sgmlconv */*.sgml | gzip -9 >sgml-1.5.2b2.tgzapi: cd api; $(SUBMAKE)ext: cd ext; $(SUBMAKE)lib: cd lib; $(SUBMAKE)mac: cd mac; $(SUBMAKE)ref: cd ref; $(SUBMAKE)tut: cd tut; $(SUBMAKE)clean: for DIR in $(SUBDIRS) ; do \ (cd $$DIR; $(SUBMAKE) clean) ; doneclobber: for DIR in $(SUBDIRS) ; do \ (cd $$DIR; $(SUBMAKE) clobber) ; done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -