Thu Aug 13 09:11:11 BST 1998 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: - Tidy up of the menufactory example from Andy Kahn <kahn@zk3.dec.com> - New section on Range Widgets from David Huggins-Daines <bn711@freenet.carleton.ca> - Started a new section on 'Advanced Event and Signal Handling' - used an email from Owen. - New appendix on Gdk Event Types - Added the tictactoe full example code to the 'Code Examples' appendix * Add the range widgets example. Re-add the text and tree examples, as cvs has lost them.
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
|