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