#---*- 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/convert/Makelocal-convert $
#------------------------------------------------------------------------

XXX_FILES   = ${wildcard *.xxx}
YYY_FILES   = ${XXX_FILES:%.xxx=%.yyy}

.PHONY: all clean cleanAll distclean

all: ${YYY_FILES}

%.yyy: %.xxx
	xxx2yyy $< $@

clean cleanAll distclean:
	rm -f ${YYY_FILES}
