ubuntu-bots/Makefile

10 lines
142 B
Makefile
Raw Normal View History

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