]> Pileus Git - ~andy/gtk/blobdiff - demos/gtk-demo/Makefile.am
Fix up linker flags
[~andy/gtk] / demos / gtk-demo / Makefile.am
index 4fbf6bb8bdc0494cf4bb25435625eb46e82e7ab9..698c242c0dc0719f70206df2f5505957fd52aecc 100644 (file)
@@ -1,38 +1,57 @@
 ## Makefile.am for gtk+/demos
+include $(top_srcdir)/Makefile.decl
 
 democodedir=$(datadir)/gtk-2.0/demo
 
-## These should be in the order you want them to appear in the 
+## These should be in the order you want them to appear in the
 ## demo app, which means alphabetized by demo title, not filename
 demos =                                                \
        appwindow.c                             \
+       assistant.c                             \
+       builder.c                               \
        button_box.c                            \
        changedisplay.c                         \
+       clipboard.c                             \
        colorsel.c                              \
+       combobox.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                                 \
        list_store.c                            \
        menus.c                                 \
+       offscreen_window.c                      \
+       offscreen_window2.c                     \
        panes.c                                 \
+       pickers.c                               \
        pixbufs.c                               \
+       printing.c                              \
+       rotated_text.c                          \
+       search_entry.c                          \
        sizegroup.c                             \
+       spinner.c                               \
        stock_browser.c                         \
        textview.c                              \
+       textscroll.c                            \
+       toolpalette.c                           \
        tree_store.c                            \
        ui_manager.c
 
 INCLUDES = \
-       -DDEMOCODEDIR="\"$(democodedir)\""              \
-       -I$(top_srcdir)                                 \
-       -I$(top_builddir)/gdk                           \
-       -DG_DISABLE_DEPRECATED                          \
-       -DGDK_PIXBUF_DISABLE_DEPRECATED                 \
-       -DGDK_DISABLE_DEPRECATED                        \
-       -DGTK_DISABLE_DEPRECATED                        \
-       $(GTK_DEBUG_FLAGS)                              \
+       -DDEMOCODEDIR="\"$(democodedir)\""      \
+       -I$(top_srcdir)                         \
+       -I$(top_builddir)/gdk                   \
+       -DGDK_DISABLE_DEPRECATED                \
+       -DGTK_DISABLE_DEPRECATED                \
+       $(GTK_DEBUG_FLAGS)                      \
        $(GTK_DEP_CFLAGS)
 
 DEPS = \
@@ -43,14 +62,16 @@ DEPS = \
 LDADDS = \
        $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la  \
        $(top_builddir)/gdk/$(gdktargetlib)                             \
-       $(top_builddir)/gtk/$(gtktargetlib)
+       $(top_builddir)/gtk/$(gtktargetlib)                             \
+       $(GTK_DEP_LIBS)
 
 bin_PROGRAMS = gtk-demo
 
 BUILT_SOURCES = demos.h
 
-EXTRA_DIST =           \
-       $(IMAGEFILES)
+EXTRA_DIST +=          \
+       $(IMAGEFILES)   \
+       demo.ui
 
 demos.h: @REBUILD@ $(demos) geninclude.pl
        (here=`pwd` ; cd $(srcdir) && $(PERL) $$here/geninclude.pl $(demos)) > demos.h
@@ -63,6 +84,7 @@ gtk_demo_SOURCES =            \
 
 gtk_demo_DEPENDENCIES = $(DEPS)
 gtk_demo_LDADD = $(LDADDS)
+gtk_demo_LDFLAGS = -export-dynamic
 
 IMAGEFILES=    alphatest.png           \
                apple-red.png           \
@@ -70,13 +92,17 @@ IMAGEFILES= alphatest.png           \
                floppybuddy.gif         \
                gnome-applets.png       \
                gnome-calendar.png      \
+               gnome-fs-directory.png  \
+               gnome-fs-regular.png    \
                gnome-foot.png          \
                gnome-gimp.png          \
                gnome-gmush.png         \
                gnome-gsame.png         \
                gnu-keys.png            \
-               gtk-logo-rgb.gif
+               gtk-logo-rgb.gif                
 
-democode_DATA = $(demos) $(IMAGEFILES)
+democode_DATA = $(demos) $(IMAGEFILES) demo.ui
 
 DISTCLEANFILES = demos.h
+
+-include $(top_srcdir)/git.mk