remove pdf and add makefile for building pdf
This commit is contained in:
parent
0970148f6a
commit
b9b6d18ebd
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,10 +1 @@
|
|||
*.aux
|
||||
*.fdb*
|
||||
*.fls
|
||||
*.log
|
||||
*.out
|
||||
*.gz
|
||||
*.toc
|
||||
*.loe
|
||||
*.maf
|
||||
*.mtc*
|
||||
out/
|
||||
|
|
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
LATEX=pdflatex
|
||||
OUT_DIR=out
|
||||
LATEX_FLAGS=-output-directory=$(OUT_DIR)
|
||||
|
||||
script: script.tex
|
||||
mkdir -p out
|
||||
$(LATEX) $(LATEX_FLAGS) $^
|
||||
$(LATEX) $(LATEX_FLAGS) $^
|
||||
$(LATEX) $(LATEX_FLAGS) $^
|
||||
|
||||
PHONY: script
|
36622
script.pdf
36622
script.pdf
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue