blob: a5396d2aabf1899a53f1a6497840fee5268df371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUBDIRS = aspectframe eventbox gtkdial notebook progressbar scrolledwin tictactoe \
clist filesel list paned rulers table \
entry menu pixmap scribble-simple text \
base helloworld packbox radiobuttons selection tree \
buttons helloworld2 packer rangewidgets statusbar 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
|