Files
ubuntu-bots/Makefile
2006-06-26 22:39:23 +02:00

10 lines
142 B
Makefile

ALL=$(shell find . -name '???*' -maxdepth 1 -type d -printf '%p.tar.gz\n')
default: $(ALL)
%.tar.gz: %
tar zcf $@ $<
clean:
rm -f $(ALL)