diff options
author | GMT 1998 Tony Gale <gale@gtk.org> | 1998-12-08 18:04:58 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 1998-12-08 18:04:58 +0000 |
commit | f6c5b74fb725d3f9165ca1013c0fe9a029067ab5 (patch) | |
tree | 0633ceed336ca158fc10c0b7aae5b92e898f5ec6 /examples | |
parent | d6acd1ecd3779096e96d63e07d10ab01869ce7ed (diff) | |
download | gtk+-f6c5b74fb725d3f9165ca1013c0fe9a029067ab5.tar.gz |
simple top level Makefile that invokes all the sub-directory Makefiles.
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.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000000..a5396d2aab --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,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 + |