mirror of
https://git.overleaf.com/62b5935a0a2811a0714e8fe8
synced 2024-11-23 20:10:23 +00:00
15 lines
239 B
Makefile
15 lines
239 B
Makefile
all: paper foreword
|
|
|
|
paper: jsys.tex
|
|
pdflatex jsys.tex
|
|
bibtex jsys
|
|
pdflatex jsys.tex
|
|
bibtex jsys
|
|
pdflatex jsys.tex
|
|
|
|
foreword: foreword.tex
|
|
pdflatex foreword.tex
|
|
|
|
clean:
|
|
rm -rf *.aux *.log *.out *~* *.bbl *.blg jsys.pdf foreword.pdf
|