mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
8864534892
Mon Jul 27 09:18:13 BST 1998 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: GtkTree section from David Huggins-Daines <bn711@freenet.carleton.ca>, add a GtkText widget example * examples/text/* example/tree/* : new examples for the GtkTree and GtkText widgets
9 lines
114 B
Makefile
9 lines
114 B
Makefile
|
|
CC = gcc
|
|
|
|
tree: tree.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` tree.c -o tree
|
|
|
|
clean:
|
|
rm -f *.o tree
|