forked from AuroraMiddleware/gtk
690e34968a
Mon Mar 23 12:03:03 CST 1998 Shawn T. Amundson <amundson@gtk.org> * examples/: added this directory with stuff from the tutorial, updated to compile and work with recent changes
9 lines
136 B
Makefile
9 lines
136 B
Makefile
|
|
CC = gcc
|
|
|
|
helloworld: helloworld.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` helloworld.c -o helloworld
|
|
|
|
clean:
|
|
rm helloworld
|