gtk2/examples/gtkdial/Makefile
BST 1998 Tony Gale 4268cd7312 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
1998-04-02 15:33:36 +00:00

15 lines
318 B
Makefile

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.c gtkdial.h
$(CC) `gtk-config --cflags` -c dial_test.c -o dial_test.o
gtkdial.o: gtkdial.c gtkdial.h
$(CC) `gtk-config --cflags` -c gtkdial.c -o gtkdial.o
clean:
rm -f *.o dial_test