Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
latex-guide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandre Morlet
latex-guide
Commits
b995adc2
Commit
b995adc2
authored
Sep 07, 2017
by
Entéocline
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile amélioré — permet de nettoyer les fichiers générés
parent
9dd1ed31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
Makefile
Makefile
+20
-1
No files found.
Makefile
View file @
b995adc2
########################## MAKEFILE LaTeX GUIDE #############################
# Constantes
SOURCE
=
latex-guide.tex
SOURCE
=
latex-guide.tex
AUX
=
latex-guide.aux
AUX
=
latex-guide.aux
EXEM
=
ex.aux
EXEM
=
ex.aux
TIKZ
=
tikz/
all
:
# Règles
all
:
check-tikz compile
compile
:
pdflatex
--enable-write18
${SOURCE}
pdflatex
--enable-write18
${SOURCE}
bibtex
${AUX}
bibtex
${AUX}
bibtex
${EXEM}
bibtex
${EXEM}
pdflatex
${SOURCE}
pdflatex
${SOURCE}
pdflatex
${SOURCE}
pdflatex
${SOURCE}
check-tikz
:
@
test
-d
${TIKZ}
||
mkdir
${TIKZ}
clean
:
@
echo
"Nettoyage des fichiers de compilation..."
@
rm
-f
*
.aux
*
.log
*
.bbl
*
.blg
*
.toc
*
.out
*
.auxlock
*
.tmp
@
cd
parts/
;
rm
-f
*
.aux
mrproper
:
clean
@
echo
"Nettoyage des fichiers générés..."
@
cd
${TIKZ}
;
rm
-f
*
@
rm
-f
*
.pdf
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment