initial latex framework

This commit is contained in:
Thomas Klaehn
2015-06-25 10:18:01 +02:00
commit 2b9a9305f9
7 changed files with 371 additions and 0 deletions

24
Makefile Normal file
View File

@@ -0,0 +1,24 @@
MAIN := framework.pdf
SRC := $(basename $(MAIN)).tex
DEP := \
config/headfoot.tex \
config/sourcelst.tex \
config/titlepage.tex \
Makefile
all: $(MAIN) $(DEP)
clean:
rm -f \
$(basename $(MAIN)).aux \
$(basename $(MAIN)).dvi \
$(basename $(MAIN)).log \
$(basename $(MAIN)).out \
$(basename $(MAIN)).toc \
$(MAIN)
$(MAIN):
@latex $(SRC)
latex $(SRC)
dvipdf $(basename $(MAIN)).dvi $(MAIN)