1998-12-08 18:04:58 +00:00
|
|
|
|
1999-02-01 14:47:05 +00:00
|
|
|
SUBDIRS = arrow \
|
|
|
|
aspectframe \
|
|
|
|
base \
|
|
|
|
buttonbox \
|
|
|
|
buttons \
|
|
|
|
calendar \
|
|
|
|
clist \
|
|
|
|
entry \
|
|
|
|
eventbox \
|
|
|
|
filesel \
|
|
|
|
fixed \
|
|
|
|
frame \
|
|
|
|
gtkdial \
|
|
|
|
helloworld \
|
|
|
|
helloworld2 \
|
|
|
|
label \
|
|
|
|
list \
|
|
|
|
menu \
|
|
|
|
notebook \
|
|
|
|
packbox \
|
|
|
|
packer \
|
|
|
|
paned \
|
|
|
|
pixmap \
|
|
|
|
progressbar \
|
|
|
|
radiobuttons \
|
|
|
|
rangewidgets \
|
|
|
|
rulers \
|
|
|
|
scribble-simple \
|
|
|
|
scrolledwin \
|
|
|
|
selection \
|
|
|
|
statusbar \
|
|
|
|
table \
|
|
|
|
text \
|
|
|
|
tictactoe \
|
|
|
|
tree \
|
|
|
|
wheelbarrow
|
1998-12-08 18:04:58 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|