gtk2/examples/Makefile
GMT 1999 Tony Gale 7402d68c8f update to new examples
Mon Feb  1 13:35:14 GMT 1999 Tony Gale  <gale@gtk.org>

        * examples/Makefile: update to new examples

        * examples/menu/itemfactory.c: I must have forgotten to
          'cvs add' this file
1999-02-01 14:47:05 +00:00

51 lines
653 B
Makefile

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
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