SUBDIRS = atsys cellcc dpf dtrace linux-mtpt rxlperf

all:
	@# Spawn the submakes in the background instead of relying on
	@# 'make -j' or whatever, so they actually run in parallel. I know the
	@# subdirs don't interact with each other, so this is just easier.
	for i in $(SUBDIRS) ; do $(MAKE) -C $$i all & done && wait

clean:
	for i in $(SUBDIRS) ; do $(MAKE) -C $$i clean ; done
