Annotation of processmail/Makefile, revision 3.0

2.1       boris       1: KULICHKI=kulichki.com:public_html/boris/processmail
                      2: PERLSCRIPTS = collection.pl \
                      3:        createtable.pl \
                      4:        parameters.pl\
                      5:        processmail.pl\
                      6:        reminder.pl \
                      7:        subroutines.pl
                      8: 
                      9: TEX = process.tex
                     10: 
                     11: README = README
                     12: 
                     13: PDF=${TEX:%.tex=%.pdf}
                     14: 
2.2       boris      15: ZIP=processmail.zip processmail_windows.zip index.html
2.1       boris      16: 
                     17: all:  ${PDF} ${PERLSCRIPTS}
                     18: 
                     19: 
                     20: %.pdf:  %.tex
                     21:        $(RM) $*.toc
                     22:        pdflatex $*
                     23:        - bibtex $*
                     24:        while ( grep -q '^LaTeX Warning: Label(s) may have changed' $*.log || \
                     25:        grep -q '^Package pdfscreen Warning: TOC file not available' $*.log ) \
                     26:        do pdflatex $*; done
                     27: 
                     28: $(ZIP):  ${PERLSCRIPTS} ${README} ${TEX}
                     29:        chmod a+x ${PERLSCRIPTS}
                     30:        zip $(ZIP)  ${PERLSCRIPTS} ${README} ${TEX} 
                     31: 
                     32: zip:  $(ZIP)
                     33: 
                     34: deliver: $(ZIP) 
                     35:        scp $(ZIP) $(KULICHKI)
                     36: 
                     37: clean:
                     38:        $(RM) *.aux *.bbl *.dvi *.log *.out *.toc *.blg *.lof *.lot $(PDF) $(ZIP)

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