WebServer=alpha.psepr.org WebBase=/var/www/html GuideXML = $(wildcard *Guide.xml) GuidePHP = $(patsubst %.xml, %.php, $(GuideXML)) SupportFiles= rpmgen.php docs.css DocFiles= DSMT-PLUsers-20050501.ppt adams-Scalable.pdf DateString = $(shell date +%Y-%m-%d) DateParam = --stringparam CurrentDate "$(DateString)" all: $(GuidePHP) rsync: $(GuidePHP) rsync --rsh=ssh -u $(GuidePHP) $(SupportFiles) $(DocFiles) $(WebServer):$(WebBase)/docs preview: $(GuidePHP) rsync --rsh=ssh -u $(GuidePHP) $(SupportFiles) $(DocFiles) $(WebServer):$(WebBase)/_docs/ $(GuidePHP): %.php: %.xml GenDocs.xsl xsltproc $(DateParam) -o $@ GenDocs.xsl $< clean: rm ${GuidePHP}