mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
1.0.9.48: texi2pdf rework (Aymeric Vincent sbcl-devel 2007-09-05)
It looks likely that texi2dvi is more ubiquitous than texi2pdf, so just apply the patch. ... (plus whitespace and .cvsignore collateral changes).
This commit is contained in:
parent
94476bde09
commit
fab0742469
|
|
@ -1,6 +1,8 @@
|
|||
*.aux
|
||||
*.cp
|
||||
*.cps
|
||||
*.fn
|
||||
*.fns
|
||||
*.info
|
||||
*.ky
|
||||
*.log
|
||||
|
|
@ -8,5 +10,6 @@
|
|||
*.pg
|
||||
*.toc
|
||||
*.tp
|
||||
*.txt
|
||||
*.vr
|
||||
*.include
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
ifeq ($(TEXI2PDF),)
|
||||
TEXI2PDF:=texi2dvi -p
|
||||
endif
|
||||
|
||||
.PHONY: top clean html all
|
||||
|
||||
all: sbcl-internals.pdf sbcl-internals.info
|
||||
|
|
@ -22,7 +26,7 @@ info: top
|
|||
epstopdf $< > $@
|
||||
|
||||
sbcl-internals.pdf: top $(patsubst %.dot,%.pdf,$(wildcard *.dot)) *.texinfo
|
||||
texi2pdf sbcl-internals.texinfo
|
||||
$(TEXI2PDF) sbcl-internals.texinfo
|
||||
|
||||
sbcl-internals.info: top $(patsubst %.dot,%.txt,$(wildcard *.dot)) *.texinfo
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ ifeq ($(MAKEINFO),)
|
|||
endif
|
||||
|
||||
ifeq ($(TEXI2PDF),)
|
||||
TEXI2PDF:=texi2pdf
|
||||
TEXI2PDF:=texi2dvi -p
|
||||
endif
|
||||
|
||||
ifeq ($(DVIPS),)
|
||||
|
|
@ -73,7 +73,7 @@ ps: $(PSFILES)
|
|||
pdf: $(PDFFILES)
|
||||
|
||||
%.pdf: %.texinfo $(DOCFILES) docstrings
|
||||
texi2pdf $(I_FLAGS) $<
|
||||
$(TEXI2PDF) $(I_FLAGS) $<
|
||||
|
||||
# info docfiles
|
||||
.PHONY: info
|
||||
|
|
|
|||
|
|
@ -194,8 +194,8 @@
|
|||
(defun valid-wrapper-of (instance)
|
||||
(let ((wrapper (wrapper-of instance)))
|
||||
(if (invalid-wrapper-p wrapper)
|
||||
(check-wrapper-validity instance)
|
||||
wrapper)))
|
||||
(check-wrapper-validity instance)
|
||||
wrapper)))
|
||||
|
||||
;;; NIL: means nothing so far, no actual arg info has NILs in the
|
||||
;;; metatype.
|
||||
|
|
|
|||
|
|
@ -17,4 +17,4 @@
|
|||
;;; checkins which aren't released. (And occasionally for internal
|
||||
;;; versions, especially for internal versions off the main CVS
|
||||
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
|
||||
"1.0.9.47"
|
||||
"1.0.9.48"
|
||||
|
|
|
|||
Loading…
Reference in a new issue