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