
MAKE	= make

SUBDIRS	= drawwindow icons listwindow mainwindow objectwindow texturewindow

all:	subdirs

subdirs:
	set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i; done

clean:
	rm *.xpm

new:	clean subdirs

