#---*- Makefile -*-------------------------------------------------------
#$Author: saulius $
#$Date: 2019-03-07 15:33:31 +0000 (Thu, 07 Mar 2019) $
#$Revision: 184 $
#$URL: svn+ssh://saulius-grazulis.lt/home/saulius/svn-repositories/makefiles/tarball/Makelocal-tarball $
#------------------------------------------------------------------------

TAGDIR = tags
DIRS   = ${wildcard ${TAGDIR}/*}
TARS   = ${DIRS:${TAGDIR}/%=subversion-tt-%.tbz2}
## TARS  := ${subst ttsg,sg,${TARS}}

.PHONY: all clean cleanAll distclean

all: ${TARS}

subversion-tt-%.tbz2:
	tar --exclude .svn -cvj -f $@ -C ${TAGDIR} $*

clean:

cleanAll distclean: clean
	rm -vi ${TARS}
