diff options
Diffstat (limited to 'examples/menu/Makefile')
-rw-r--r-- | examples/menu/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/menu/Makefile b/examples/menu/Makefile index 1ce3218d8e..0ed6adb5ac 100644 --- a/examples/menu/Makefile +++ b/examples/menu/Makefile @@ -6,13 +6,10 @@ CFLAGS = -Wall \ -DGDK_DISABLE_DEPRECATED \ -DGDK_PIXBUF_DISABLE_DEPRECATED -all: menu itemfactory +all: menu menu: menu.c - $(CC) menu.c -o menu $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs` - -itemfactory: itemfactory.c - $(CC) itemfactory.c -o itemfactory $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs` + $(CC) menu.c -o menu $(CFLAGS) `pkg-config gtk+-3.0 --cflags --libs` clean: - rm -f *.o menu itemfactory + rm -f *.o menu |