makefile

来自「reduced python source for embedded apps」· 代码 · 共 61 行

TXT
61
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?