10 lines
237 B
Makefile
10 lines
237 B
Makefile
|
.DEFAULT_GOAL := default
|
||
|
.PHONY: default python
|
||
|
|
||
|
default: python
|
||
|
pdflatex main.tex
|
||
|
|
||
|
python:
|
||
|
python python/Hasse.py graphics/src/example1.txt graphics/example1.tex
|
||
|
python python/FSA.py graphics/src/example2.txt graphics/example2.tex
|