diff options
author | GMT 1999 Tony Gale <gale@gtk.org> | 1999-01-28 10:35:40 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 1999-01-28 10:35:40 +0000 |
commit | a2dafdfc88dbaaaf67c3971372da4a5b8b63ec2b (patch) | |
tree | b16f8940a58bbe8d25bcf5f3112fbcb3c682952b /examples/menu/Makefile | |
parent | a70005873773b8b3214b2a54818990db517fbaa9 (diff) | |
download | gtk+-a2dafdfc88dbaaaf67c3971372da4a5b8b63ec2b.tar.gz |
- Replace all uses of deprecated functions. - Replace menufactory example
Thu Jan 28 10:16:28 GMT 1999 Tony Gale <gale@gtk.org>
* docs/gtk_tut.sgml:
- Replace all uses of deprecated functions.
- Replace menufactory example with itemfactory example
from Nick Scott <mendigo@geocities.com>
- Minor bug fixes in the examples.
Diffstat (limited to 'examples/menu/Makefile')
-rw-r--r-- | examples/menu/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/examples/menu/Makefile b/examples/menu/Makefile index b9db74f44f..4b94bb99b9 100644 --- a/examples/menu/Makefile +++ b/examples/menu/Makefile @@ -1,19 +1,13 @@ CC = gcc -all: menu menufactory +all: menu itemfactory menu: menu.c $(CC) `gtk-config --cflags` menu.c -o menu `gtk-config --libs` -menufactory: menufactory.o mfmain.o - $(CC) `gtk-config --libs` menufactory.o mfmain.o -o menufactory - -menufactory.o: menufactory.c mfmain.h - $(CC) `gtk-config --cflags` -c menufactory.c -o menufactory.o - -mfmain.o: mfmain.c mfmain.h menufactory.h - $(CC) `gtk-config --cflags` -c mfmain.c -o mfmain.o +itemfactory: itemfactory.c + $(CC) `gtk-config --cflags` itemfactory.c -o itemfactory `gtk-config --libs` clean: - rm -f *.o menu menufactory + rm -f *.o menu itemfactory |