Fix makefile to not look in subdirs

This commit is contained in:
Dennis Kaarsemaker 2006-06-26 22:39:23 +02:00
parent ba56301f7d
commit d7f48ce648

View File

@ -1,4 +1,4 @@
ALL=$(shell find . -name '???*' -type d -printf '%p.tar.gz\n')
ALL=$(shell find . -name '???*' -maxdepth 1 -type d -printf '%p.tar.gz\n')
default: $(ALL)