commit
0c7828d723
@ -0,0 +1,10 @@ |
||||
*.aux |
||||
*.fdb_latexmk |
||||
*.log |
||||
*.out |
||||
*.pdf |
||||
*.tex |
||||
*.tex~ |
||||
*.toc |
||||
*.xmpdata |
||||
*.xmpi |
@ -0,0 +1,31 @@ |
||||
# Makefile for Master's Thesis
|
||||
|
||||
TARGET := thesis.pdf
|
||||
|
||||
SOURCES := $(wildcard include/*.tex)
|
||||
RASTERIMG := $(wildcard images/*.png)
|
||||
VECTORIMG := $(wildcard images/*.svg)
|
||||
|
||||
|
||||
.PHONY: all clean distclean |
||||
|
||||
all: $(TARGET) |
||||
|
||||
$(TARGET): $(SOURCES) $(RASTERIMG) $(patsubst %.svg,%.pdf,$(VECTORIMG)) |
||||
|
||||
%.pdf: %.tex |
||||
-pdflatex -file-line-error -interaction=nonstopmode $<
|
||||
# bibtex $* # TODO!
|
||||
-pdflatex -file-line-error -interaction=nonstopmode $<
|
||||
-pdflatex -file-line-error -interaction=nonstopmode $<
|
||||
pdflatex -file-line-error -interaction=nonstopmode $<
|
||||
|
||||
%.pdf: %.svg |
||||
inkscape -A $@ $<
|
||||
|
||||
clean: |
||||
rm -f *.aux *.idx *.ind *.out *.toc *.log *.bbl *.blg *.brf *.lof *.lot
|
||||
rm -f include/*.aux
|
||||
|
||||
distclean: clean |
||||
rm -f *.pdf
|
@ -0,0 +1,10 @@ |
||||
# Master Thesis |
||||
|
||||
|
||||
|
||||
|
||||
## LaTeX |
||||
|
||||
Aalto Thesis Template from https://wiki.aalto.fi/display/Aaltothesis/Aalto+Thesis+LaTeX+Template |
||||
|
||||
Aalto Logo Package from https://wiki.aalto.fi/display/aaltolatex/ |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue