gtk2/examples/gtkdial/Makefile
PST 1998 Shawn T. Amundson 7033e33822 Released GTK+ 0.99.9
Fri Mar 27 16:35:00 PST 1998 Shawn T. Amundson <amundson@gtk.org>

        * Released GTK+ 0.99.9

	* examples: added a couple more, fixed some Makefiles
1998-03-28 01:01:54 +00:00

15 lines
297 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:
$(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