File:  [Local Repository] / processmail / Makefile
Revision 3.3: download - view: text, annotated - select for diffs - revision graph
Sun Mar 23 18:12:58 2008 UTC (16 years, 2 months ago) by boris
Branches: MAIN
CVS tags: HEAD
Again changed

KULICHKI=kulichki.com:public_html/boris/processmail
PERLSCRIPTS = collection.pl \
	createtable.pl \
	parameters.pl\
	processmail.pl\
	reminder.pl \
	subroutines.pl

TEX = process.tex

README = README

PDF=${TEX:%.tex=%.pdf}

ZIP=processmail.zip 

all:  ${ZIP}


%.pdf:  %.tex
	$(RM) $*.toc
	pdflatex $*
	- bibtex $*
	while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log || \
	grep -q '^Package pdfscreen Warning: TOC file not available' $*.log ) \
	do pdflatex $*; done

$(ZIP):  ${PERLSCRIPTS} ${README} ${TEX} ${PDF}
	chmod a+x ${PERLSCRIPTS}
	zip $(ZIP)  ${PERLSCRIPTS} ${README} ${TEX} ${PDF}

zip:  $(ZIP)

deliver: $(ZIP) ${PDF}
	scp $(ZIP) processmail_windows.zip process.zip index.html $(KULICHKI)

clean:
	$(RM) *.aux *.bbl *.dvi *.log *.out *.toc *.blg *.lof *.lot $(PDF) processmail.zip

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>