gtk/examples/gtkdial/Makefile
CST 1998 Shawn T. Amundson 690e34968a added this directory with stuff from the tutorial, updated to compile and
Mon Mar 23 12:03:03 CST 1998 Shawn T. Amundson <amundson@gtk.org>

        * examples/: added this directory with stuff from
          the tutorial, updated to compile and work with recent
          changes
1998-03-23 06:36:09 +00:00

15 lines
294 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 *.o dial_test