mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
542dec4ce1
* examples/extract.sh, examples/extract.awk: Make extraction work. * examples/Makefile (SUBDIRS): Remove packer. * examples/packer/pack.c, examples/packer/Makefile: Removed. * docs/tutorial/gtk-tut.sgml: Fix the included examples far enough to make them compile and (mostly) work, remove the packer example.
52 lines
677 B
Makefile
52 lines
677 B
Makefile
|
|
SUBDIRS = arrow \
|
|
aspectframe \
|
|
base \
|
|
buttonbox \
|
|
buttons \
|
|
calendar \
|
|
clist \
|
|
entry \
|
|
eventbox \
|
|
filesel \
|
|
fixed \
|
|
frame \
|
|
gtkdial \
|
|
helloworld \
|
|
helloworld2 \
|
|
label \
|
|
list \
|
|
menu \
|
|
notebook \
|
|
packbox \
|
|
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
|
|
|