Commit 8e7b40e9cb8e8d9fc65a2a41d689d52c0139bac0
1 parent
85c1dee6
Exists in
master
and in
2 other branches
Updated makefile to move pdf to correct folder - 'make move' command
Showing
1 changed file
with
4 additions
and
2 deletions
Show diff stats
docs/user_guide_pt_BR_source/Makefile
@@ -3,9 +3,11 @@ all: | @@ -3,9 +3,11 @@ all: | ||
3 | bibtex manual_pt_BR | 3 | bibtex manual_pt_BR |
4 | pdflatex manual_pt_BR | 4 | pdflatex manual_pt_BR |
5 | pdflatex manual_pt_BR | 5 | pdflatex manual_pt_BR |
6 | - | ||
7 | clean: | 6 | clean: |
8 | rm -f *.dvi *.log *.toc *.aux *.bbl *.blg *.loa *.los *.out *.cb | 7 | rm -f *.dvi *.log *.toc *.aux *.bbl *.blg *.loa *.los *.out *.cb |
9 | 8 | ||
10 | cleanall: | 9 | cleanall: |
11 | - rm -f manual_pt_BR.pdf *.dvi *.log *.toc *.aux *.bbl *.blg *.loa *.los *.out *.cb | 10 | + rm -f manual_pt_BR.pdf *.dvi *.log *.toc *.aux *.bbl *.blg *.loa *.los *.out *.cb |
11 | + | ||
12 | +move: | ||
13 | + mv -f manual_pt_BR.pdf ../user_guide_pt_BR.pdf |