Fixed priority for building documentation with Makefile

TEXINPUTS preferred existing installations of tudadesign
now it uses the classes it's building docs for
This commit is contained in:
Benjamin Brockhaus 2015-01-22 10:26:41 +01:00
parent a0a057754b
commit eed18bea31

View File

@ -78,5 +78,5 @@ uninstall:
dvips $(notdir $<); dvips $(notdir $<);
%.dvi: %.dvi:
cd $(dir $@); \ cd $(dir $@); \
TEXINPUTS=":$(CURDIR)/texmf/tex/latex/tuddesign//:" latex $(basename $(notdir $@)).tex; \ TEXINPUTS="$(CURDIR)/texmf/tex/latex/tuddesign//:" latex $(basename $(notdir $@)).tex; \
TEXINPUTS=":$(CURDIR)/texmf/tex/latex/tuddesign//:" latex $(basename $(notdir $@)).tex; TEXINPUTS="$(CURDIR)/texmf/tex/latex/tuddesign//:" latex $(basename $(notdir $@)).tex;