]> Pileus Git - ~andy/gtk/blob - examples/Makefile
This fixes a scrolling bug. Shouldn't cause problems, but you never know
[~andy/gtk] / examples / Makefile
1
2 SUBDIRS =       arrow \
3                 aspectframe \
4                 base \
5                 buttonbox \
6                 buttons \
7                 calendar \
8                 clist \
9                 entry \
10                 eventbox \
11                 filesel \
12                 fixed \
13                 frame \
14                 gtkdial \
15                 helloworld \
16                 helloworld2 \
17                 label \
18                 list \
19                 menu \
20                 notebook \
21                 packbox \
22                 paned \
23                 pixmap \
24                 progressbar \
25                 radiobuttons \
26                 rangewidgets \
27                 rulers \
28                 scribble-simple \
29                 scribble-xinput \
30                 scrolledwin \
31                 selection \
32                 spinbutton \
33                 statusbar \
34                 table \
35                 text \
36                 tictactoe \
37                 tree \
38                 wheelbarrow
39
40 all:
41         list='$(SUBDIRS)'; \
42         for subdir in $$list; do \
43           (cd $$subdir && $(MAKE)); \
44         done
45
46 clean:
47         list='$(SUBDIRS)'; \
48         for subdir in $$list; do \
49           (cd $$subdir && $(MAKE) clean); \
50         done
51