diff options
Diffstat (limited to 'examples/list/Makefile')
-rw-r--r-- | examples/list/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/list/Makefile b/examples/list/Makefile index 366d480302..33e5765b85 100644 --- a/examples/list/Makefile +++ b/examples/list/Makefile @@ -2,7 +2,7 @@ CC = gcc list: list.c - $(CC) `gtk-config --cflags` list.c -o list `gtk-config --libs` + $(CC) `pkg-config --cflags gtk+-2.0` list.c -o list `pkg-config --libs gtk+-2.0` clean: rm -f *.o list |