# Makefile
# 
#

DIRS = ./ i386/ i386/Linux/ obj-formats/ French/ English/

RM = rm

clean:
	thisdir=`pwd` ;\
	for i in $(DIRS); \
	do \
	  echo $$i ;\
	  cd $$i ;\
 	  $(RM) -f *~ *.o ;\
	  cd $$thisdir ;\
	done
