mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 11:49:32 +01:00
Makefilen und gitignore
This commit is contained in:
parent
fdece8930e
commit
7f8bdddd7c
10
Public/thprog/.gitignore
vendored
Normal file
10
Public/thprog/.gitignore
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
*.aux
|
||||
*.toc
|
||||
*.out
|
||||
*.pdf
|
||||
*.log
|
||||
*.fls
|
||||
*.fdb_latexmk
|
||||
.*.swp
|
||||
*id_rsa*
|
||||
*.gz
|
22
Public/thprog/Makefile
Normal file
22
Public/thprog/Makefile
Normal file
@ -0,0 +1,22 @@
|
||||
PDF = Konfluenz Koinduktion_reduktion Struckturelle_Induktion Polynomordnung SystemF
|
||||
|
||||
all: $(PDF)
|
||||
|
||||
continuous: $(PDF).continuous
|
||||
|
||||
%.continuous: %.pdf
|
||||
latexmk -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
||||
|
||||
$(PDF): $(PDF).pdf
|
||||
|
||||
%.pdf: %.tex
|
||||
latexmk -jobname=$(@:%.pdf=%) -pdf $<
|
||||
|
||||
clean:
|
||||
latexmk -c -f $(PDF).tex
|
||||
|
||||
distclean:
|
||||
latexmk -C -f $(PDF).tex
|
||||
rm -f $(PDF).pdf
|
||||
|
||||
.PHONY: all clean distclean $(PDF) continuous
|
Loading…
Reference in New Issue
Block a user