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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
## arch-tag: Automake rules for main Rhythmbox shell
AUTHORS.tab : $(top_srcdir)/AUTHORS
sed -e 's/^/"/' -e 's/$$/",/' < $(top_srcdir)/AUTHORS > $@.tmp
mv $@.tmp $@
MAINTAINERS.tab : $(top_srcdir)/MAINTAINERS
sed -e 's/^/"/' -e 's/$$/",/' < $(top_srcdir)/MAINTAINERS > $@.tmp
mv $@.tmp $@
MAINTAINERS.old.tab : $(top_srcdir)/MAINTAINERS.old
sed -e 's/^/"/' -e 's/$$/",/' < $(top_srcdir)/MAINTAINERS.old > $@.tmp
mv $@.tmp $@
DOCUMENTERS.tab : $(top_srcdir)/DOCUMENTERS
sed -e 's/^/"/' -e 's/$$/",/' < $(top_srcdir)/DOCUMENTERS > $@.tmp
mv $@.tmp $@
tab_files = AUTHORS.tab MAINTAINERS.tab MAINTAINERS.old.tab DOCUMENTERS.tab
bin_PROGRAMS = rhythmbox
rhythmbox_SOURCES = \
main.c \
rb-shell.c \
rb-shell.h \
rb-shell-player.c \
rb-shell-player.h \
rb-source-header.c \
rb-source-header.h \
rb-statusbar.c \
rb-statusbar.h \
rb-shell-preferences.c \
rb-shell-preferences.h \
rb-shell-clipboard.c \
rb-shell-clipboard.h \
rb-playlist-manager.c \
rb-playlist-manager.h \
rb-history.c \
rb-history.h \
rb-play-order.c \
rb-play-order.h \
rb-play-order-linear.c \
rb-play-order-linear.h \
rb-play-order-linear-loop.c \
rb-play-order-linear-loop.h \
rb-play-order-shuffle.c \
rb-play-order-shuffle.h \
rb-play-order-random.c \
rb-play-order-random.h \
rb-play-order-random-equal-weights.c \
rb-play-order-random-equal-weights.h \
rb-play-order-random-by-age.c \
rb-play-order-random-by-age.h \
rb-play-order-random-by-age-and-rating.c \
rb-play-order-random-by-age-and-rating.h \
rb-play-order-random-by-rating.c \
rb-play-order-random-by-rating.h \
rb-remote.c \
rb-remote.h \
rb-tray-icon.c \
rb-tray-icon.h
rhythmbox_LDADD = \
$(top_builddir)/lib/librb.la \
$(top_builddir)/metadata/librbmetadata.la \
$(top_builddir)/player/librbplayer.la \
$(top_builddir)/widgets/librbwidgets.la \
$(top_builddir)/rhythmdb/librhythmdb.la \
$(top_builddir)/sources/libsources.la \
$(top_builddir)/sources/libsourcesimpl.la \
$(top_builddir)/iradio/librbiradio.la \
$(top_builddir)/corba/librbcorba.la \
$(RHYTHMBOX_LIBS)
rhythmbox_LDFLAGS = -export-dynamic
INCLUDES = \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
-DG_LOG_DOMAIN=\"Rhythmbox\" \
-I$(top_srcdir) \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/metadata \
-I$(top_srcdir)/player \
-I$(top_srcdir)/rhythmdb \
-I$(top_srcdir)/widgets \
-I$(top_srcdir)/sources \
-I$(top_srcdir)/corba \
-I$(top_builddir)/corba \
-I$(top_srcdir)/iradio \
-DPIXMAP_DIR=\""$(datadir)/pixmaps"\" \
-DSHARE_DIR=\"$(pkgdatadir)\" \
-DDATADIR=\""$(datadir)"\" \
$(WARN_CFLAGS) \
$(RHYTHMBOX_CFLAGS) \
-D_XOPEN_SOURCE -D_BSD_SOURCE
if USE_MONKEYMEDIA
INCLUDES += -I$(top_srcdir)/metadata/monkey-media
endif
BUILT_SOURCES = $(tab_files)
CLEANFILES = $(BUILT_SOURCES)
EXTRA_DIST = dashboard.c
|