# $Id: Makefile,v 1.2 2002/06/12 15:19:36 sra Exp $ RFCGENDIR = ../../rfcgen RFCGEN = ${RFCGENDIR}/rfcgen RFCCHECK = ${RFCGENDIR}/rfccheck all: txts check clean: rm -f TAGS draft-*[0-9][0-9].* txts: *.ms Makefile ${RFCGEN} @for i in *.ms; do case "$$i" in draft-*[0-9][0-9].ms) :;; *) echo "Processing $$i"; perl ${RFCGEN} "$$i";; esac; done tags: TAGS TAGS: *.ms Makefile etags *.ms Makefile check: Makefile ${RFCCHECK} @for i in *.txt; do echo "Checking $$i"; perl ${RFCCHECK} $$i; done update: cvs -q update diff: @cvs -q diff || true