add correct dependencies

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
This commit is contained in:
BST 1998 Tony Gale 1998-04-02 15:33:36 +00:00 committed by Tony Gale
parent 5d81d2ab28
commit 4268cd7312
10 changed files with 46 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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:

View File

@ -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