summaryrefslogtreecommitdiff
path: root/examples/selection
diff options
context:
space:
mode:
authorJay Cox <jaycox@earthlink.net>1998-11-07 16:12:37 +0000
committerjaycox <jaycox@src.gnome.org>1998-11-07 16:12:37 +0000
commita77c4da512b1e3fedce9d9105d8961e47f6e5100 (patch)
treef07c4dd0cbe065bce5ca75a2d170742e9e65be98 /examples/selection
parentcf1d80fd80160f8831c6bc6751126d4679ee5ddb (diff)
downloadgtk+-a77c4da512b1e3fedce9d9105d8961e47f6e5100.tar.gz
forward declaration for gtk_window_paint declare xid_ht static get the
1998-11-07 Jay Cox <jaycox@earthlink.net> * gtk/gtkwindow.c: forward declaration for gtk_window_paint * gdk/gdkxid.c: declare xid_ht static * examples/*/Makefile: get the link ordering right.
Diffstat (limited to 'examples/selection')
-rw-r--r--examples/selection/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/selection/Makefile b/examples/selection/Makefile
index de7aaf708a..c53cec3b62 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` `gtk-config --libs` gettargets.c -o gettargets
+ $(CC) `gtk-config --cflags` gettargets.c -o gettargets `gtk-config --libs`
setselection: setselection.c
- $(CC) `gtk-config --cflags` `gtk-config --libs` setselection.c -o setselection
+ $(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs`
clean:
rm -f *.o gettargets setselection