11 lines
324 B
Makefile
11 lines
324 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
|
|
python python/Truthtable.py graphics/src/example3.txt graphics/example3.tex
|