all: picprogs hostprogs PICPROGS_DIRS= iwjpictest cebpic HOSTPROGS_DIRS= hostside picprogs: set -e; for f in $(PICPROGS_DIRS); do $(MAKE) -C $$f; done hostprogs: set -e; for f in $(HOSTPROGS_DIRS); do $(MAKE) -C $$f; done