Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Gesh
GHC
Commits
26396e5e
Commit
26396e5e
authored
27 years ago
by
Simon Marlow
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1997-12-16 12:48:40 by simonm]
build SGML documentation using the normal 'gmake dvi' etc.
parent
f51056ab
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mk/target.mk
+24
-0
24 additions, 0 deletions
mk/target.mk
with
24 additions
and
0 deletions
mk/target.mk
+
24
−
0
View file @
26396e5e
...
...
@@ -869,6 +869,30 @@ else
cp
$(
TEXI2HTML_PREFIX
)
invisible.xbm html/
@
touch
$@
endif
#--------------------------------------------------------------------------
# SGML Documentation
#
# This will eventually replace the literate stuff for documentation
SGML_SRCS
=
$(
wildcard
*
.sgml
*
.vsgml
)
SGML_DVI
=
$(
addsuffix .dvi,
$(
basename
$(
SGML_SRCS
)))
SGML_PS
=
$(
addsuffix .ps,
$(
basename
$(
SGML_SRCS
)))
SGML_TEXI
=
$(
addsuffix .texi,
$(
basename
$(
SGML_SRCS
)))
SGML_INFO
=
$(
addsuffix .info,
$(
basename
$(
SGML_SRCS
)))
SGML_HTML
=
$(
addsuffix .html,
$(
basename
$(
SGML_SRCS
)))
SGML_TEXT
=
$(
addsuffix .txt,
$(
basename
$(
SGML_SRCS
)))
dvi
::
$(SGML_DVI)
info
::
$(SGML_INFO)
html
::
$(SGML_HTML)
txt
::
$(SGML_TXT)
ps
::
$(SGML_PS)
CLEAN_FILES
+=
$(
SGML_TEXT
)
$(
SGML_HTML
)
$(
SGML_TEXI
)
$(
SGML_PS
)
$(
SGML_DVI
)
# suffix rules should handle the rest (for single-file docs at least).
###########################################
#
# Targets: clean
...
...
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