
SUBDIRS = \
	actions \
	arrow \
	aspectframe \
	base \
	buttonbox \
	buttons \
	calendar \
	colorselection \
	combobox \
	dial \
	dnd \
	entry \
	entrycompletion \
	eventbox \
	fixed \
	fontselection \
	frame \
	gtkdial \
	helloworld \
	helloworld2 \
	label \
	menu \
	notebook \
	packbox \
	paned \
	progressbar \
	radiobuttons \
	rangewidgets \
	rulers \
	scribble \
	scrolledwindow \
	selection \
	spinbutton \
	statusbar \
	table \
	textview \
	tictactoe \
	thread \
	toolbar \
	treeview \
	wheelbarrow

all:
	list='$(SUBDIRS)'; \
	for subdir in $$list; do \
	  (cd $$subdir && $(MAKE)); \
	done

clean:
	list='$(SUBDIRS)'; \
	for subdir in $$list; do \
	  (cd $$subdir && $(MAKE) clean); \
	done

