dirs := caching custom hello library mixed multiroot polymorphism \
streaming wildcard

ifeq ($(WITH_ACE),1)
dirs += binary
endif

ifeq ($(WITH_DBXML),1)
dirs += dbxml
endif

.PHONY: all $(dirs)

all: $(dirs)

$(dirs):
	@$(MAKE) -C $@ $(MAKECMDGOALS)

makefile: ;
% :: $(dirs) ;
