ALLDIRS = \
	dhrystone_1_1 \
	dhrystone_2_1 \
	dosfs-1.03 \
	endian \
	ent \
	euler_series \
	FdSerial \
	fibo \
	hello \
	mall \
	rc4 \
	tea \
	Tv2Text \
	TvText \
	whetstone \
	xtea \
	xxtea

# demo - demo not working yet
# fat_io_library - no makefile

all: $(ALLDIRS)

.PHONY : all $(ALLDIRS)
$(ALLDIRS):
	cd $@ && make && cd ..

SUBDIRS = `ls -R | grep "^./" | cut -d":" -f1`

clean: FORCE
	for dir in $(SUBDIRS); do cd $$dir && make clean; cd ..; done
FORCE:

