Blame demos/Makefile.am

Packit Service fb6fa5
## Makefile.am for gtk+/demos
Packit Service fb6fa5
include $(top_srcdir)/Makefile.decl
Packit Service fb6fa5
Packit Service fb6fa5
SUBDIRS = gtk-demo
Packit Service fb6fa5
Packit Service fb6fa5
INCLUDES = 				\
Packit Service fb6fa5
	-I$(top_srcdir) 		\
Packit Service fb6fa5
	-I$(top_builddir)/gdk		\
Packit Service fb6fa5
	-DGDK_DISABLE_DEPRECATED	\
Packit Service fb6fa5
	-DGTK_DISABLE_DEPRECATED	\
Packit Service fb6fa5
	$(GTK_DEBUG_FLAGS)		\
Packit Service fb6fa5
	$(GTK_DEP_CFLAGS)
Packit Service fb6fa5
Packit Service fb6fa5
DEPS = 									\
Packit Service fb6fa5
	$(top_builddir)/gdk/$(gdktargetlib) 				\
Packit Service fb6fa5
	$(top_builddir)/gtk/$(gtktargetlib)
Packit Service fb6fa5
Packit Service fb6fa5
LDADDS = 								\
Packit Service fb6fa5
	$(top_builddir)/gdk/$(gdktargetlib)        			\
Packit Service fb6fa5
	$(top_builddir)/gtk/$(gtktargetlib)				\
Packit Service fb6fa5
	$(GTK_DEP_LIBS)							\
Packit Service fb6fa5
	$(MATH_LIB)
Packit Service fb6fa5
Packit Service fb6fa5
noinst_PROGRAMS = 		\
Packit Service fb6fa5
	testpixbuf-drawable 	\
Packit Service fb6fa5
	testanimation 		\
Packit Service fb6fa5
	testpixbuf-color	\
Packit Service fb6fa5
	testpixbuf-save		\
Packit Service fb6fa5
	testpixbuf-scale 	\
Packit Service fb6fa5
	pixbuf-demo
Packit Service fb6fa5
Packit Service fb6fa5
# Need to build test-inline-pixbufs.h for testpixbuf
Packit Service fb6fa5
noinst_PROGRAMS += testpixbuf
Packit Service fb6fa5
BUILT_SOURCES = test-inline-pixbufs.h
Packit Service fb6fa5
Packit Service fb6fa5
test-inline-pixbufs.h: apple-red.png gnome-foot.png
Packit Service fb6fa5
	$(GDK_PIXBUF_CSOURCE) --raw --build-list		\
Packit Service fb6fa5
	        apple_red  $(srcdir)/apple-red.png	\
Packit Service fb6fa5
                gnome_foot $(srcdir)/gnome-foot.png	\
Packit Service fb6fa5
        > test-inline-pixbufs.h				\
Packit Service fb6fa5
	|| (rm -f test-inline-pixbufs.h && false)
Packit Service fb6fa5
Packit Service fb6fa5
testpixbuf_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
testpixbuf_drawable_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
testpixbuf_save_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
testpixbuf_color_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
testpixbuf_scale_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
testanimation_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
pixbuf_demo_DEPENDENCIES = $(DEPS)
Packit Service fb6fa5
Packit Service fb6fa5
testpixbuf_LDADD = $(LDADDS)
Packit Service fb6fa5
testpixbuf_drawable_LDADD = $(LDADDS)
Packit Service fb6fa5
testpixbuf_save_LDADD = $(LDADDS)
Packit Service fb6fa5
testpixbuf_color_LDADD = $(LDADDS)
Packit Service fb6fa5
testpixbuf_scale_LDADD = $(LDADDS)
Packit Service fb6fa5
testanimation_LDADD = $(LDADDS)
Packit Service fb6fa5
pixbuf_demo_LDADD = $(LDADDS)
Packit Service fb6fa5
Packit Service fb6fa5
testpixbuf_SOURCES = testpixbuf.c pixbuf-init.c
Packit Service fb6fa5
testpixbuf_drawable_SOURCES = testpixbuf-drawable.c pixbuf-init.c
Packit Service fb6fa5
testpixbuf_save_SOURCES = testpixbuf-save.c
Packit Service fb6fa5
testpixbuf_color_SOURCES = testpixbuf-color.c
Packit Service fb6fa5
testpixbuf_scale_SOURCES = testpixbuf-scale.c pixbuf-init.c
Packit Service fb6fa5
testanimation_SOURCES = testanimation.c pixbuf-init.c
Packit Service fb6fa5
pixbuf_demo_SOURCES = pixbuf-demo.c pixbuf-init.c
Packit Service fb6fa5
Packit Service fb6fa5
EXTRA_DIST +=			\
Packit Service fb6fa5
	apple-red.png		\
Packit Service fb6fa5
	background.jpg		\
Packit Service fb6fa5
	gnome-applets.png	\
Packit Service fb6fa5
	gnome-calendar.png	\
Packit Service fb6fa5
	gnome-foot.png		\
Packit Service fb6fa5
	gnome-gimp.png		\
Packit Service fb6fa5
	gnome-gmush.png		\
Packit Service fb6fa5
	gnome-gsame.png		\
Packit Service fb6fa5
	gnu-keys.png
Packit Service fb6fa5
Packit Service fb6fa5
DISTCLEANFILES = test-inline-pixbufs.h
Packit Service fb6fa5
Packit Service fb6fa5
-include $(top_srcdir)/git.mk