tex-framework/Makefile
Thomas Klaehn 3268b48246 - make
- author added to titlepage
2015-10-29 08:04:48 +01:00

27 lines
442 B
Makefile

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