mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
f6c5b74fb7
Tue Dec 8 18:02:57 GMT 1998 Tony Gale <gale@gtk.org> * examples/Makefile: simple top level Makefile that invokes all the sub-directory Makefiles.
20 lines
499 B
Makefile
20 lines
499 B
Makefile
|
|
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
|
|
|