]> Pileus Git - ~andy/gtk/commitdiff
simple top level Makefile that invokes all the sub-directory Makefiles.
authorGMT 1998 Tony Gale <gale@gtk.org>
Tue, 8 Dec 1998 18:04:58 +0000 (18:04 +0000)
committerTony Gale <gale@src.gnome.org>
Tue, 8 Dec 1998 18:04:58 +0000 (18:04 +0000)
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.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
examples/Makefile [new file with mode: 0644]

index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
index 0a009aca2544f6c4397cd80fcff9080e3eab5c62..30b1315e4ad5e229f9b8431af736c41f181532ae 100644 (file)
@@ -1,3 +1,8 @@
+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.
+
 1998-12-08  Andrew T. Veliath  <andrewtv@usa.net>
 
        * gtk/testgtk.c: Functions to test the toolbar space style.
diff --git a/examples/Makefile b/examples/Makefile
new file mode 100644 (file)
index 0000000..a5396d2
--- /dev/null
@@ -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
+