~ubuntu-branches/ubuntu/quantal/rhythmbox/quantal

« back to all changes in this revision

Viewing changes to rhythmdb/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-03-25 23:58:54 UTC
  • Revision ID: james.westby@ubuntu.com-20050325235854-2212vevw1u4074w8
Tags: upstream-0.8.8
ImportĀ upstreamĀ versionĀ 0.8.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## arch-tag: Automake rules for RhythmDB library
 
2
 
 
3
noinst_LTLIBRARIES = librhythmdb.la
 
4
 
 
5
librhythmdb_la_LDFLAGS = -export-dynamic
 
6
librhythmdb_la_LIBADD = $(top_builddir)/metadata/librbmetadata.la 
 
7
 
 
8
INCLUDES =                                              \
 
9
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\"        \
 
10
        -DG_LOG_DOMAIN=\"RhythmDB\"                     \
 
11
        -I$(top_srcdir)                                 \
 
12
        -I$(top_srcdir)/lib                             \
 
13
        -I$(top_srcdir)/metadata                        \
 
14
        $(RHYTHMBOX_CFLAGS)
 
15
 
 
16
librhythmdb_la_SOURCES =                                \
 
17
        rhythmdb.h                                      \
 
18
        rhythmdb.c                                      \
 
19
        rhythmdb-property-model.h                       \
 
20
        rhythmdb-property-model.c                       \
 
21
        rhythmdb-query-model.h                          \
 
22
        rhythmdb-query-model.c
 
23
 
 
24
 
 
25
 
 
26
if USE_TREEDB
 
27
librhythmdb_la_SOURCES += rhythmdb-tree.h rhythmdb-tree.c
 
28
endif
 
29
 
 
30
 
 
31