mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
708dd8cc52
With the exception of GtkAction.
148 lines
3.0 KiB
Makefile
148 lines
3.0 KiB
Makefile
## Makefile.am for gtk+/demos
|
|
include $(top_srcdir)/Makefile.decl
|
|
|
|
## These should be in the order you want them to appear in the
|
|
## demo app, which means alphabetized by demo title, not filename
|
|
demos = \
|
|
application.c \
|
|
appwindow.c \
|
|
assistant.c \
|
|
builder.c \
|
|
button_box.c \
|
|
changedisplay.c \
|
|
clipboard.c \
|
|
colorsel.c \
|
|
combobox.c \
|
|
css_accordion.c \
|
|
css_basics.c \
|
|
css_multiplebgs.c \
|
|
css_pixbufs.c \
|
|
css_shadows.c \
|
|
dialog.c \
|
|
drawingarea.c \
|
|
editable_cells.c \
|
|
entry_buffer.c \
|
|
entry_completion.c \
|
|
expander.c \
|
|
hypertext.c \
|
|
iconview.c \
|
|
iconview_edit.c \
|
|
images.c \
|
|
infobar.c \
|
|
links.c \
|
|
listbox.c \
|
|
list_store.c \
|
|
menus.c \
|
|
offscreen_window.c \
|
|
offscreen_window2.c \
|
|
overlay.c \
|
|
panes.c \
|
|
pickers.c \
|
|
pixbufs.c \
|
|
printing.c \
|
|
revealer.c \
|
|
rotated_text.c \
|
|
search_entry.c \
|
|
search_entry2.c \
|
|
sizegroup.c \
|
|
spinner.c \
|
|
stack.c \
|
|
textview.c \
|
|
textscroll.c \
|
|
theming_style_classes.c \
|
|
toolpalette.c \
|
|
transparent.c \
|
|
tree_store.c \
|
|
ui_manager.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
DEPS = \
|
|
$(top_builddir)/gtk/libgtk-3.la
|
|
|
|
LDADDS = \
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(GTK_DEP_LIBS) \
|
|
-lm
|
|
|
|
bin_PROGRAMS = gtk3-demo gtk3-demo-application
|
|
|
|
BUILT_SOURCES = demos.h demo_resources.c
|
|
|
|
EXTRA_DIST += \
|
|
$(IMAGEFILES) \
|
|
demo.gresource.xml \
|
|
$(RESOURCES) \
|
|
org.gtk.Demo.gschema.xml
|
|
|
|
gsettings_SCHEMAS = \
|
|
org.gtk.Demo.gschema.xml
|
|
|
|
@GSETTINGS_RULES@
|
|
|
|
demos.h: $(demos) geninclude.pl
|
|
$(AM_V_GEN) (here=`pwd` ; cd $(srcdir) && $(PERL) $$here/geninclude.pl $(demos)) > demos.h
|
|
|
|
gtk3_demo_SOURCES = \
|
|
$(demos) \
|
|
demo_resources.c \
|
|
main.c \
|
|
demos.h
|
|
|
|
gtk3_demo_DEPENDENCIES = $(DEPS)
|
|
gtk3_demo_LDADD = $(LDADDS)
|
|
gtk3_demo_LDFLAGS = -export-dynamic
|
|
|
|
gtk3_demo_application_SOURCES = \
|
|
application-standalone.c \
|
|
demo_resources.c
|
|
|
|
gtk3_demo_application_LDADD = $(LDADDS)
|
|
|
|
demo_resources.c: demo.gresource.xml $(RESOURCES)
|
|
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $(srcdir)/demo.gresource.xml
|
|
|
|
RESOURCES= $(demos) \
|
|
application.ui \
|
|
demo.ui \
|
|
menus.ui \
|
|
stack.ui \
|
|
revealer.ui \
|
|
theming.ui \
|
|
listbox.ui \
|
|
alphatest.png \
|
|
apple-red.png \
|
|
background.jpg \
|
|
floppybuddy.gif \
|
|
gnome-applets.png \
|
|
gnome-calendar.png \
|
|
gnome-foot.png \
|
|
gnome-fs-directory.png \
|
|
gnome-fs-regular.png \
|
|
gnome-gimp.png \
|
|
gnome-gmush.png \
|
|
gnome-gsame.png \
|
|
gnu-keys.png \
|
|
gtk-logo-24.png \
|
|
gtk-logo-48.png \
|
|
gtk-logo-old.png \
|
|
messages.txt \
|
|
css_accordion.css \
|
|
css_basics.css \
|
|
css_multiplebgs.css \
|
|
css_pixbufs.css \
|
|
css_shadows.css \
|
|
cssview.css \
|
|
reset.css
|
|
|
|
DISTCLEANFILES = demos.h
|
|
|
|
-include $(top_srcdir)/git.mk
|