
# Definitions #

HOME = /u3/usystem
# SHELL variable needed only on sysV to ensure usage of sh by make
SHELL = /bin/sh
TeXLIB = /usr/lib/tex/macros

# Directives #

clean :
	rm -f *.aux *.dvi *.idx *.ilg *.ind *.log *.toc *.blg

# File Dependencies #

research.dvi : Makefile research.tex
	TEXINPUTS=.:${HOME}/TeX:${TeXLIB} && export TEXINPUTS && latex research.tex

educational.dvi : Makefile educational.tex
	TEXINPUTS=.:${HOME}/TeX:${TeXLIB} && export TEXINPUTS && latex educational.tex

# Local Variables: #
# compile-command: "make -k" #
# End: #
