Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
0a6b561f
Commit
0a6b561f
authored
25 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Makefile for the various internal documents.
parent
79130ca9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/internals/Makefile
+79
-0
79 additions, 0 deletions
docs/internals/Makefile
with
79 additions
and
0 deletions
docs/internals/Makefile
0 → 100644
+
79
−
0
View file @
0a6b561f
RM
=
rm
RMDIR
=
rmdir
CP
=
cp
LATEX
=
latex
PDFLATEX
=
pdflatex
DVIPS
=
dvips
DVIPSRES
=
1200
DVIPSOPTS
=
-t
a4
-D
$(
DVIPSRES
)
RM
=
rm
RMDIR
=
rmdir
CP
=
cp
MV
=
mv
HTML_SPLIT_LEVEL
=
2
MASTERFILE
=
design
FILES
=
architecture.tex back.tex compiler-overview.tex compiler.tex debugger.tex
\
design.tex environment.tex fasl.tex front.tex glossary.tex interface.tex
\
interpreter.tex lowlev.tex middle.tex object.tex retargeting.tex
\
run-time.tex vm.tex
FIGURES
=
all
:
$(MASTERFILE).dvi
$(MASTERFILE).dvi
:
$(FILES) $(FIGURES)
$(
LATEX
)
$(
MASTERFILE
)
.tex
# $(MASTERFILE).aux $(MASTERFILE).toc : $(FILES) $(FIGURES)
# $(LATEX) $(MASTERFILE).tex
# $(RM) $(MASTERFILE).dvi
# $(MASTERFILE).dvi : $(FILES) $(MASTERFILE).aux $(MASTERFILE).toc $(FIGURES)
# $(LATEX) $(MASTERFILE).tex
# Three times should be enough for everyone(tm).
.PHONY
:
firsttime
firsttime
:
$(MASTERFILE).dvi
$(
LATEX
)
$(
MASTERFILE
)
.tex
$(
LATEX
)
$(
MASTERFILE
)
.tex
.PRECIOUS
:
%.aux %.toc %.tex
%.dvi
:
%.tex
%.eps
:
%.fig
fig2dev
-L
ps
$^
$@
%.pdf
:
%.tex
$(
PDFLATEX
)
$^
%.ps
:
%.dvi
$(
DVIPS
)
$(
DVIPSOPTS
)
-o
$@
$*
.PHONY
:
html
html
:
$(MASTERFILE).dvi $(FILES) $(FIGURES)
latex2html
-local_icons
-antialias_text
-antialias
-scalable_fonts
\
-split
$(
HTML_SPLIT_LEVEL
)
-transparent
-white
$(
MASTERFILE
)
.tex
clean distclean cvsclean
:
-$(
RM
)
*
.log
*
.toc
*
.aux
*
.dvi
*
~
*
.bak
*
.ps
*
.pdf core
*
.eps
-$(
RM
)
design/
*
-$(
RMDIR
)
design
.PHONY
:
allformats
allformats
:
$(FILES) $(FIGURES)
$(
MAKE
)
firsttime
LATEX
=
pslatex
$(
MAKE
)
design.ps
;
$(
MV
)
design.ps design-psfonts.ps
$(
MAKE
)
firsttime
$(
MAKE
)
design.ps
DVIPSRES
=
1200
;
$(
MV
)
design.ps design-1200.ps
$(
MAKE
)
design.ps
DVIPSRES
=
600
;
$(
MV
)
design.ps design-600.ps
$(
MAKE
)
design.ps
DVIPSRES
=
300
;
$(
MV
)
design.ps design-300.ps
$(
MAKE
)
design.pdf
$(
MAKE
)
html
HTML_SPLIT_LEVEL
=
3
;
$(
MV
)
design design-split3
$(
MAKE
)
html
HTML_SPLIT_LEVEL
=
2
;
$(
MV
)
design design-split2
$(
MAKE
)
html
HTML_SPLIT_LEVEL
=
1
;
$(
MV
)
design design-split1
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment