mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 09:50:06 +00:00
7033e33822
Fri Mar 27 16:35:00 PST 1998 Shawn T. Amundson <amundson@gtk.org> * Released GTK+ 0.99.9 * examples: added a couple more, fixed some Makefiles
9 lines
139 B
Makefile
9 lines
139 B
Makefile
|
|
CC = gcc
|
|
|
|
helloworld: helloworld.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` helloworld.c -o helloworld
|
|
|
|
clean:
|
|
rm -f helloworld
|