summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--examples/Makefile1
-rw-r--r--examples/pixmap/Makefile14
3 files changed, 0 insertions, 17 deletions
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