Skip to content

Commit a9ac33c

Browse files
committed
Makefile added
1 parent 928bc8f commit a9ac33c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@
2929
- Устанвить [TeX Live](https://tug.org/texlive/) или аналогичный дистрибутив.
3030
- Сделать клон репозитория.
3131
- Зайти в папку ```tex```
32-
- Выполнить следующие команды
32+
- Выполнить команду
3333
```
34-
pdflatex FormalLanguageConstrainedReachabilityLectureNotes.tex
35-
bibtex FormalLanguageConstrainedReachabilityLectureNotes.aux
36-
pdflatex FormalLanguageConstrainedReachabilityLectureNotes.tex
34+
make
3735
```
3836

3937

tex/makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
main=FormalLanguageConstrainedReachabilityLectureNotes
2+
3+
all:
4+
pdflatex $(main).tex
5+
bibtex $(main).aux
6+
pdflatex $(main).tex
7+
8+
clean:
9+
rm -f $(main).pdf *.log *.aux *.bbl *.blg *.out *.toc *~

0 commit comments

Comments
 (0)