####
#### Author:    J. Robert Buchanan
#### Address:   Department of Mathematics
####		Millersville University
####		P.O.Box 1002
####		Millersville, PA 17551-0302
#### Phone:     717-872-3659
#### FAX:       717-871-2320
#### Email:     Robert.Buchanan@millersville.edu
#### Date:      03/01/2012
####
#### Purpose:   Manage handouts in MATH467 "Partial Differential Equations"
####

TEX=latex
PS2PDF=ps2pdf14
PS2PDFOPTS=
DVIPS=dvips
DVIPSOPTS=-z
GS_OPTIONS=
TAR=tar
TAROPTS=cf
CP=cp
CPOPTS=-f
LPR=lpr
LPROPTS=
INSTALLDIR=/home/bob/public_html/math467
#RM=rm

%.dvi : %.tex
	$(TEX) $<

%.ps : %.dvi
	$(DVIPS) $(DVIPSOPTS) -o $@ $<

%.pdf : %.ps
	$(PS2PDF) $(PS2PDFOPTS) $< $@

%.html : %.tex
	$(L2H) $(L2HOPTS) $<

clean :
	$(RM) *.log *~ *.aux

%.print : %.ps
	$(LPR) $(LPROPTS) $<

all : %.pdf

install : main.pdf
	-mkdir $(INSTALLDIR)/$(lastword $(subst /, ,$(dir $(realpath main.pdf))))
	$(CP) $(CPOPTS) main.pdf $(INSTALLDIR)/$(lastword $(subst /, ,$(dir $(realpath main.pdf))))

####
#### EOF
####

