From 908bdf79414517bed84a4c3ccee7d18f15cd651c Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Fri, 1 Oct 2010 12:36:16 +0100 Subject: [PATCH] Complete the removal of examples/pixmap to fix make dist --- Makefile.am | 2 -- examples/Makefile | 1 - examples/pixmap/Makefile | 14 -------------- 3 files changed, 17 deletions(-) delete mode 100644 examples/pixmap/Makefile diff --git a/Makefile.am b/Makefile.am index b5f6c145d0..10812814e5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -70,8 +70,6 @@ EXTRA_DIST += \ examples/packbox/packbox.c \ examples/paned/Makefile \ examples/paned/paned.c \ - examples/pixmap/Makefile \ - examples/pixmap/pixmap.c \ examples/progressbar/Makefile \ examples/progressbar/progressbar.c \ examples/radiobuttons/Makefile \ diff --git a/examples/Makefile b/examples/Makefile index f68d6ce703..6d54beabb2 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -17,7 +17,6 @@ SUBDIRS = arrow \ notebook \ packbox \ paned \ - pixmap \ progressbar \ radiobuttons \ rangewidgets \ diff --git a/examples/pixmap/Makefile b/examples/pixmap/Makefile deleted file mode 100644 index 3df817098d..0000000000 --- a/examples/pixmap/Makefile +++ /dev/null @@ -1,14 +0,0 @@ - -CC = gcc - -CFLAGS = -Wall \ - -DG_DISABLE_DEPRECATED \ - -DGDK_DISABLE_DEPRECATED \ - -DGDK_PIXBUF_DISABLE_DEPRECATED \ - -DGTK_DISABLE_DEPRECATED - -pixmap: pixmap.c - $(CC) pixmap.c -o pixmap $(CFLAGS) `pkg-config gtk+-2.0 --cflags --libs` - -clean: - rm -f *.o pixmap