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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
## arch-tag: Automake rules for misc. utility functions
noinst_LTLIBRARIES = librb.la
librb_la_SOURCES = \
rb-atomic.h \
rb-debug.c \
rb-debug.h \
rb-dialog.c \
rb-dialog.h \
rb-file-helpers.c \
rb-file-helpers.h \
rb-file-monitor.c \
rb-file-monitor.h \
rb-marshal.c \
rb-marshal.h \
disclosure-widget.c \
disclosure-widget.h \
gsequence.c \
gsequence.h \
rb-bonobo-helpers.c \
rb-bonobo-helpers.h \
rb-glade-helpers.c \
rb-glade-helpers.h \
rb-string-helpers.c \
rb-string-helpers.h \
rb-stock-icons.c \
rb-stock-icons.h \
rb-cut-and-paste-code.c \
rb-cut-and-paste-code.h \
rb-thread-helpers.c \
rb-thread-helpers.h \
rb-util.c \
rb-util.h \
rb-playlist.c \
rb-playlist.h \
rb-enums.h \
eel-gconf-extensions.c \
eel-gconf-extensions.h \
rb-tree-dnd.c \
rb-tree-dnd.h \
$(EGGFILES) \
rb-preferences.h
if WITH_GTK22
librb_la_SOURCES += rb-atomic.c
endif
INCLUDES = \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_LOG_DOMAIN=\"Rhythmbox\" \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-I$(top_srcdir) \
-I$(top_srcdir)/library \
-I$(top_srcdir)/rhythmdb \
$(WARN_CFLAGS) \
$(RHYTHMBOX_CFLAGS)
EGGFILES= \
eggtrayicon.h \
eggtrayicon.c
EGGDIR=$(srcdir)/../../libegg/libegg/tray/
regenerate-built-sources:
EGGFILES="$(EGGFILES)" EGGDIR="$(EGGDIR)" $(srcdir)/update-from-egg.sh || true
BUILT_SOURCES=rb-marshal.c rb-marshal.h
CLEAN_FILES = $(BUILT_SOURCES)
rb-marshal.c: rb-marshal.list
@GLIB_GENMARSHAL@ --prefix=rb_marshal $(srcdir)/rb-marshal.list --header --body > rb-marshal.c
rb-marshal.h: rb-marshal.list
@GLIB_GENMARSHAL@ --prefix=rb_marshal $(srcdir)/rb-marshal.list --header > rb-marshal.h
librb_la_LDFLAGS = -export-dynamic
EXTRA_DIST = rb-marshal.list
|