1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
## arch-tag: Automake rules for Rhythmbox's collection of various widgets
noinst_LTLIBRARIES = librbwidgets.la
librbwidgets_la_SOURCES = \
rb-song-display-box.c \
rb-song-display-box.h \
rb-entry-view.c \
rb-entry-view.h \
rb-property-view.c \
rb-property-view.h \
rb-search-entry.c \
rb-search-entry.h \
rb-header.c \
rb-header.h \
rb-volume.c \
rb-volume.h \
rb-druid.c \
rb-druid.h \
$(EGGFILES) \
rb-ellipsizing-label.c \
rb-ellipsizing-label.h \
rb-cell-renderer-pixbuf.c \
rb-cell-renderer-pixbuf.h \
rb-cell-renderer-rating.c \
rb-cell-renderer-rating.h \
rb-song-info.c \
rb-song-info.h \
rb-load-failure-dialog.c \
rb-load-failure-dialog.h \
gtktreeprivate.h \
gtkrbtree.h \
rb-rating.c \
rb-rating.h \
rb-tree-view.c \
rb-tree-view.h \
rb-query-creator.c \
rb-query-creator.h \
rb-tree-view-column.c \
rb-tree-view-column.h
INCLUDES = \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_LOG_DOMAIN=\"Rhythmbox\" \
-I$(top_srcdir) \
-I$(top_srcdir)/lib \
-I$(top_builddir)/lib \
-I$(top_srcdir)/player \
-I$(top_srcdir)/metadata \
-I$(top_srcdir)/rhythmdb \
-I$(top_srcdir)/sources \
-I$(top_srcdir)/library \
-I$(top_srcdir)/iradio \
$(WARN_CFLAGS) \
$(RHYTHMBOX_CFLAGS)
librbwidgets_la_LDFLAGS = -export-dynamic
librbwidgets_la_LIBADD = $(top_builddir)/rhythmdb/librhythmdb.la
|