Move widget-factory to demos/

Lets install this, for the benefit of artists everywhere.
This commit is contained in:
Matthias Clasen 2012-02-09 08:45:40 -05:00
parent 41e98b14d3
commit 71efe31f16
6 changed files with 23 additions and 8 deletions

View File

@ -1748,6 +1748,7 @@ demos/Makefile
demos/gtk-demo/Makefile
demos/gtk-demo/geninclude.pl
demos/pixbuf-demo/Makefile
demos/widget-factory/Makefile
examples/Makefile
tests/Makefile
tests/a11y/Makefile

View File

@ -1,6 +1,6 @@
## Makefile.am for gtk+/demos
include $(top_srcdir)/Makefile.decl
SUBDIRS = gtk-demo pixbuf-demo
SUBDIRS = gtk-demo widget-factory pixbuf-demo
-include $(top_srcdir)/git.mk

View File

@ -0,0 +1,20 @@
include $(top_srcdir)/Makefile.decl
bin_PROGRAMS = gtk3-widget-factory
gtk3_widget_factory_SOURCES = \
widget-factory.c
gtk3_widget_factory_DEPENDENCIES = \
$(top_builddir)/gtk/libgtk-3.la
gtk3_widget_factory_CPPFLAGS = \
-I$(top_srcdir) \
$(GTK_DEBUG_FLAGS) \
$(GTK_DEP_CFLAGS)
gtk3_widget_factory_LDADD = \
$(top_builddir)/gdk/libgdk-3.la \
$(top_builddir)/gtk/libgtk-3.la
EXTRA_DIST += widget-factory.ui

View File

@ -121,7 +121,6 @@ noinst_PROGRAMS = $(TEST_PROGS) \
testpixbuf-save \
testpixbuf-color \
testpixbuf-scale \
widget-factory \
testgmenu \
testlogout
@ -238,7 +237,6 @@ testanimation_DEPENDENCIES = $(TEST_DEPS)
testpixbuf_save_DEPENDENCIES = $(TEST_DEPS)
testpixbuf_color_DEPENDENCIES = $(TEST_DEPS)
testpixbuf_scale_DEPENDENCIES = $(TEST_DEPS)
widget_factory_DEPENDENCIES = $(TEST_DEPS)
testgmenu_DEPENDENCIES = $(TEST_DEPS)
testlogout_DEPENDENCIES = $(TEST_DEPS)
@ -339,7 +337,6 @@ testanimation_LDADD = $(LDADDS)
testpixbuf_save_LDADD = $(LDADDS)
testpixbuf_color_LDADD = $(LDADDS)
testpixbuf_scale_LDADD = $(LDADDS)
widget_factory_LDADD = $(LDADDS)
testgmenu_LDADD = $(LDADDS)
testlogout_LDADD = $(LDADDS)
@ -522,8 +519,6 @@ testpixbuf_color_SOURCES = testpixbuf-color.c
testpixbuf_save_SOURCES = testpixbuf-save.c
widget_factory_SOURCES = widget-factory.c
EXTRA_DIST += \
gradient1.png \
@ -545,8 +540,7 @@ EXTRA_DIST += \
merge-2.ui \
merge-3.ui \
gnome-textfile.png \
makefile.msc \
widget-factory.ui
makefile.msc
-include $(top_srcdir)/git.mk