Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
stratum0-latex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
rohieb
stratum0-latex
Commits
4953085f
Commit
4953085f
authored
8 years ago
by
rohieb
Browse files
Options
Downloads
Patches
Plain Diff
add a Makefile for easy building
parent
e5d366f0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+11
-0
11 additions, 0 deletions
.gitignore
Makefile
+26
-0
26 additions, 0 deletions
Makefile
Makefile.include
+23
-0
23 additions, 0 deletions
Makefile.include
with
60 additions
and
0 deletions
.gitignore
0 → 100644
+
11
−
0
View file @
4953085f
*.aux
*.glo
*.idx
*.out
*.ilg
*.ind
*.log
*.out
*.toc
*.cls
*.pdf
This diff is collapsed.
Click to expand it.
Makefile
0 → 100644
+
26
−
0
View file @
4953085f
include
Makefile.include
CLSLIST
=
s0artcl.cls s0minutes.cls
DTXLIST
=
s0artcl.dtx s0minutes.dtx
DOCLIST
=
$(
patsubst %.dtx,%.pdf,
$(
DTXLIST
))
INSFILE
=
stratum0-latex.ins
all
:
$(CLSLIST) doc
doc
:
$(DOCLIST)
$(CLSLIST)
:
$(DTXLIST) $(INSFILE)
$(
LATEX_SILENT
)
$(
INSFILE
)
%.pdf
:
%.dtx
$(
ECHO
)
'Generating documentation $@ ...'
$(
PDFLATEX_SILENT
)
$<
$(
SILENT
)
$(
MAKEINDEX
)
-q
-s
gind.ist
-o
$*
.ind
$*
.idx
$(
PDFLATEX_SILENT
)
$<
$(
SILENT
)
$(
ECHO
)
-e
'
$(
DONE_STRING
)
'
cleantemp
:
$(
RM
)
*
.aux
*
.glo
*
.idx
*
.out
*
.ilg
*
.ind
*
.log
*
.out
*
.toc
clean
:
cleantemp
$(
RM
)
*
.cls
*
.pdf
This diff is collapsed.
Click to expand it.
Makefile.include
0 → 100644
+
23
−
0
View file @
4953085f
MKDIR
=
mkdir
ECHO
=
@echo
OTFTOTFM
=
otftotfm
LATEX
=
latex
PDFLATEX
=
pdflatex
MAKEINDEX
=
makeindex
# color definitions
NO_COLOR
=
\x
1b[0m
OK_COLOR
=
\x
1b[32
;
01m
WARN_COLOR
=
\x
1b[33
;
01m
ERROR_COLOR
=
\x
1b[31
;
01m
# default strings
OK_STRING
=
$(
OK_COLOR
)
[
OK]
$(
NO_COLOR
)
ERROR_STRING
=
$(
ERROR_COLOR
)
[
ERRORS]
$(
NO_COLOR
)
WARN_STRING
=
$(
WARN_COLOR
)
[
WARNINGS]
$(
NO_COLOR
)
DONE_STRING
=
$(
OK_COLOR
)
[
DONE]
$(
NO_COLOR
)
PDFLATEX_SILENT
=
$(
PDFLATEX
)
-interaction
=
batchmode
LATEX_SILENT
=
$(
LATEX
)
-interaction
=
batchmode
SILENT
=
1>&1
>
/dev/null
\ No newline at end of file
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