forked from AuroraMiddleware/gtk
713cecba4c
Thu Jun 25 07:53:51 BST 1998 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: add section on GtkCList widget, contributed by Stefan Mars <mars@lysator.liu.se> * examples/clist/clist.c examples/clist/Makefile: example code for GtkCList widget from the Tutorial
9 lines
119 B
Makefile
9 lines
119 B
Makefile
|
|
CC = gcc
|
|
|
|
clist: clist.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` clist.c -o clist
|
|
|
|
clean:
|
|
rm -f *.o clist
|