mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
ee3d137660
Sat Nov 13 22:30:29 GMT 1999 Tony Gale <gale@gtk.org> * docs/gtkfaq.sgml: threads example from Erik Mouw. New question on GtkLabel background colors. * docs/gtk_tut.sgml: - Correct the example code callback function definitions. - Update the gtkdial example code, from Frans van Schaik. - Update setselection.c to current API. * examples/Makefile examples/*/*.c: Update to code listed in tutorial.
53 lines
688 B
Makefile
53 lines
688 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 \
|
|
scribble-xinput \
|
|
scrolledwin \
|
|
selection \
|
|
spinbutton \
|
|
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
|
|
|