ubuntu-bots/Makefile

10 lines
130 B
Makefile
Raw Normal View History

2006-06-26 17:57:20 +00:00
ALL=$(shell find . -name '???*' -type d -printf '%p.tar.gz\n')
default: $(ALL)
%.tar.gz: %
tar zcf $@ $<
clean:
rm -f $(ALL)