summaryrefslogtreecommitdiff
path: root/examples/selection
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-11-02 15:27:27 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-11-02 15:27:27 +0000
commitca21695fe9fe8d5db74ae77be9700ceb3fe29180 (patch)
treed954db94ab073f1ccfb02254080769d05c6d547a /examples/selection
parentbc0d15aba7f5c8b741acca9d19546a23eaef11d0 (diff)
downloadgdk-pixbuf-ca21695fe9fe8d5db74ae77be9700ceb3fe29180.tar.gz
Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
Fri Nov 2 10:21:03 2001 Owen Taylor <otaylor@redhat.com> * examples/**/Makefile.am: Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
Diffstat (limited to 'examples/selection')
-rw-r--r--examples/selection/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/selection/Makefile b/examples/selection/Makefile
index c53cec3b6..fad63ff09 100644
--- a/examples/selection/Makefile
+++ b/examples/selection/Makefile
@@ -4,10 +4,10 @@ CC = gcc
all: gettargets setselection
gettargets: gettargets.c
- $(CC) `gtk-config --cflags` gettargets.c -o gettargets `gtk-config --libs`
+ $(CC) `pkg-config --cflags gtk+-2.0` gettargets.c -o gettargets `pkg-config --libs gtk+-2.0`
setselection: setselection.c
- $(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs`
-
+ $(CC) `pkg-config --cflags gtk+-2.0` setselection.c -o setselection `pkg-config --libs gtk+-2.0`
+
clean:
rm -f *.o gettargets setselection