diff options
author | Jay Cox <jaycox@earthlink.net> | 1998-11-07 16:12:37 +0000 |
---|---|---|
committer | jaycox <jaycox@src.gnome.org> | 1998-11-07 16:12:37 +0000 |
commit | a77c4da512b1e3fedce9d9105d8961e47f6e5100 (patch) | |
tree | f07c4dd0cbe065bce5ca75a2d170742e9e65be98 /examples/helloworld2 | |
parent | cf1d80fd80160f8831c6bc6751126d4679ee5ddb (diff) | |
download | gtk+-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/helloworld2')
-rw-r--r-- | examples/helloworld2/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/helloworld2/Makefile b/examples/helloworld2/Makefile index d51e27b06a..db11296b93 100644 --- a/examples/helloworld2/Makefile +++ b/examples/helloworld2/Makefile @@ -1,8 +1,8 @@ CC = gcc -helloworld2: helloworld2.c - $(CC) `gtk-config --cflags` `gtk-config --libs` helloworld2.c -o helloworld2 +helloworld2: helloworld2.c + $(CC) `gtk-config --cflags` helloworld2.c -o helloworld2 `gtk-config --libs` clean: - rm -f helloworld2 + rm -f *.o helloworld2 |