blob: 9a694d8d5722bc90fcb4d8813f60b71b5ba45dec [file] [log] [blame]
subdirs=$(shell find . -mindepth 1 -maxdepth 1 -type d)
all:
for d in $(subdirs); do make -C $$d || exit 1; done
clean:
for d in $(subdirs); do make -C $$d $@; done