summaryrefslogtreecommitdiff
path: root/examples/helloworld/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloworld/Makefile')
-rw-r--r--examples/helloworld/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloworld/Makefile b/examples/helloworld/Makefile
index fc25f04f6..1a60bc6e4 100644
--- a/examples/helloworld/Makefile
+++ b/examples/helloworld/Makefile
@@ -2,7 +2,7 @@
CC = gcc
helloworld: helloworld.c
- $(CC) `gtk-config --cflags` helloworld.c -o helloworld `gtk-config --libs`
+ $(CC) `pkg-config --cflags gtk+-2.0` helloworld.c -o helloworld `pkg-config --libs gtk+-2.0`
clean:
rm -f *.o helloworld