SHELL = sh
MAKE = make
RM = rm

all_subdirs = conv bat hbf2gf

all:
	for d in $(all_subdirs); do (cd $$d && $(MAKE) $@); done
