Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
liuthesis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Ola Leifler
liuthesis
Commits
2a886c43
Commit
2a886c43
authored
9 years ago
by
Anton S
Browse files
Options
Downloads
Patches
Plain Diff
Fix dependencies in makefile and add some documentation
parent
1e3ded8a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+8
-2
8 additions, 2 deletions
Makefile
with
8 additions
and
2 deletions
Makefile
+
8
−
2
View file @
2a886c43
#Name that you would like for your resulting pdf file, without extension
PDFNAME
=
thesis
#The program that you use for viewing pdf files
PDFVIEWER
=
evince
#Change name of this if you change the name of demothesis.tex, should be name of the main tex file
TEXMAINFILE
=
demothesis.tex
#Location of latexmk binary
MKLATEX
=
latexmk
#Options to latexmk, should need to be changed
MKLATEXOPTS
=
-pdf
-pdflatex
=
"pdflatex -interaction=nonstopmode"
-use-make
-jobname
=
$(
PDFNAME
)
all
:
$(PDFNAME).pdf
$(PDFNAME).pdf
:
$(TEXMAINFILE)
$(PDFNAME).pdf
:
$(TEXMAINFILE)
*.tex
$(
MKLATEX
)
$(
MKLATEXOPTS
)
$<
view
:
$(PDFNAME).pdf
evince
$(
PDFNAME
)
.pdf &
$(
PDFVIEWER
)
$(
PDFNAME
)
.pdf &
clean
:
$(
MKLATEX
)
-CA
...
...
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