Changeset 6018
- Timestamp:
- Jan 16, 2006, 8:58:45 AM (20 years ago)
- Location:
- trunk/doc
- Files:
-
- 3 edited
-
Makefile (modified) (1 diff)
-
design/Makefile (modified) (2 diffs)
-
misc/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/Makefile
r6017 r6018 4 4 5 5 all: 6 for i in $(DIR); do (cd $$i; make all ); done6 for i in $(DIR); do (cd $$i; make all || exit); done 7 7 8 8 clean: 9 9 @rm -f *~ #* .*~ 10 for i in $(DIR); do (cd $$i; make clean ); done10 for i in $(DIR); do (cd $$i; make clean || exit); done 11 11 12 12 dist: 13 13 @rm -f *~ #* .*~ 14 for i in $(DIR); do (cd $$i; make dist ); done14 for i in $(DIR); do (cd $$i; make dist || exit); done -
trunk/doc/design/Makefile
r6009 r6018 1 # $Id: Makefile,v 1.1 2 2006-01-16 01:11:39eugene Exp $1 # $Id: Makefile,v 1.13 2006-01-16 18:58:45 eugene Exp $ 2 2 3 3 PDFLATEX = env TEXINPUTS=../../latex/inputs:$(TEXINPUTS):.: pdflatex … … 16 16 ippSRS.pdf : ippSRS.tex 17 17 ./trace.pl ippSRS.tex ippSRSout.tex ippSRStrace.tex 18 $(PSLATEX) ippSRSout.tex 19 $(PSLATEX) ippSRSout.tex 20 dvips -z -t letter -o ippSRSout.ps ippSRSout.dvi 21 ps2pdf $ippSRSout.ps $ippSRSout.pdf 22 thumbpdf --modes=dvips $ippSRSout.pdf 23 $(PSLATEX) ippSRSout.tex 24 dvips -z -t letter -o ippSRSout.ps ippSRSout.dvi 25 ps2pdf ippSRSout.ps ippSRSout.pdf 18 make ippSRSout.pdf 26 19 mv ippSRSout.pdf ippSRS.pdf 27 @rm -f ippSRSout.ps ippSRSout.dvi ippSRSout.aux ippSRSout.log body.tmp head.tmp 28 @rm -f ippSRSout.tbr ippSRSout.tbd ippSRSout.ent ippSRSout.lof ippSRSout.loc ippSRSout.tpm 20 rm -f ippSRSout.tex ippSRStrace.tex 29 21 30 22 %.pdf: %.tex -
trunk/doc/misc/Makefile
r3156 r6018 1 # $Id: Makefile,v 1. 4 2005-02-08 04:56:59eugene Exp $1 # $Id: Makefile,v 1.5 2006-01-16 18:58:45 eugene Exp $ 2 2 3 3 PDFLATEX = env TEXINPUTS=../../latex/inputs:$(TEXINPUTS):.: pdflatex … … 11 11 dvips -z -t letter -o $*.ps $*.dvi 12 12 ps2pdf $*.ps $*.pdf 13 @rm -f $*.ps $*.dvi $*.aux $*.log $*.tbr $*.tbd $*.lof $*.toc head.tmp body.tmp 13 thumbpdf --modes=dvips $*.pdf 14 $(PSLATEX) $*.tex 15 dvips -z -t letter -o $*.ps $*.dvi 16 ps2pdf $*.ps $*.pdf 17 @rm -f $*.ps $*.dvi $*.aux $*.log $*.tbr $*.tbd $*.tpm $*.lof $*.toc head.tmp body.tmp 14 18 15 19 clean : 16 $(RM) *.log *.dvi *.aux *.toc *.tbd *.tbr *.lof *.out *~ core head.tmp body.tmp 20 $(RM) *.log *.dvi *.aux *.toc *.tbd *.tbr *.tpm *.lof *.out *~ core head.tmp body.tmp 21 22 dist : clean 23 $(RM) *.pdf 17 24 18 25 empty : clean
Note:
See TracChangeset
for help on using the changeset viewer.
