mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
5ef056ea94
Mon Feb 1 09:16:03 GMT 1999 Tony Gale <gale@gtk.org> * docs/gtk_tut.sgml: - Complete documentation of Label widget API - New sections for the following: * Arrows * Alignment * Button Boxes * Viewports * examples/arrow/*, examples/buttonbox/*, examples/label/* - New code examples
9 lines
120 B
Makefile
9 lines
120 B
Makefile
|
|
CC = gcc
|
|
|
|
label: label.c
|
|
$(CC) `gtk-config --cflags` label.c -o label `gtk-config --libs`
|
|
|
|
clean:
|
|
rm -f *.o label
|