summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-06
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-26
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--examples/gtkdial/Makefile2
-rw-r--r--examples/menu/Makefile4
-rw-r--r--examples/tictactoe/Makefile2
10 files changed, 46 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 8ed2a25f5f..0b74cbb382 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+Thu Apr 2 17:30:04 BST 1998 Tony Gale <gale@gtk.org>
+
+ * examples/gtkdial/Makefile,
+ examples/menu/Makefile,
+ examples/tictactoe/Makefile : add correct dependencies
+
Thu Apr 2 13:04:37 BST 1998 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml: add question on failing GIMP configure
diff --git a/examples/gtkdial/Makefile b/examples/gtkdial/Makefile
index ce97b6dc8c..f514b6a156 100644
--- a/examples/gtkdial/Makefile
+++ b/examples/gtkdial/Makefile
@@ -4,7 +4,7 @@ CC = gcc
dial_test: gtkdial.o dial_test.o
$(CC) `gtk-config --libs` dial_test.o gtkdial.o -o dial_test
-dial_test.o:
+dial_test.o: dial_test.c gtkdial.h
$(CC) `gtk-config --cflags` -c dial_test.c -o dial_test.o
gtkdial.o: gtkdial.c gtkdial.h
diff --git a/examples/menu/Makefile b/examples/menu/Makefile
index 630d3f297e..3cfbe6c648 100644
--- a/examples/menu/Makefile
+++ b/examples/menu/Makefile
@@ -9,10 +9,10 @@ menu: menu.c
menufactory: menufactory.o mfmain.o
$(CC) `gtk-config --libs` menufactory.o mfmain.o -o menufactory
-menufactory.o:
+menufactory.o: menufactory.c mfmain.h
$(CC) `gtk-config --cflags` -c menufactory.c -o menufactory.o
-mfmain.o:
+mfmain.o: mfmain.c mfmain.h menufactory.h
$(CC) `gtk-config --cflags` -c mfmain.c -o mfmain.o
clean:
diff --git a/examples/tictactoe/Makefile b/examples/tictactoe/Makefile
index 5096fa5804..e405a76a8c 100644
--- a/examples/tictactoe/Makefile
+++ b/examples/tictactoe/Makefile
@@ -4,7 +4,7 @@ CC = gcc
ttt_test: tictactoe.o ttt_test.o
$(CC) `gtk-config --libs` ttt_test.o tictactoe.o -o ttt_test
-ttt_test.o:
+ttt_test.o: ttt_test.c tictactoe.h
$(CC) `gtk-config --cflags` -c ttt_test.c -o ttt_test.o
tictactoe.o: tictactoe.c tictactoe.h