]> Pileus Git - ~andy/gtk/blob - examples/helloworld/Makefile
Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
[~andy/gtk] / examples / helloworld / Makefile
1
2 CC = gcc
3
4 helloworld: helloworld.c 
5         $(CC) `pkg-config --cflags gtk+-2.0`  helloworld.c -o helloworld `pkg-config --libs gtk+-2.0`
6
7 clean: 
8         rm -f *.o helloworld