~colkitt/do/do-plugins-dr

« back to all changes in this revision

Viewing changes to Banshee/Makefile.am

  • Committer: Christopher James Halse Rogers
  • Date: 2008-02-28 00:46:33 UTC
  • Revision ID: chalserogers@gmail.com-20080228004633-9yd62p1l0d1qrxo1
Modify the buildsystem to make plugins with external dependencies optional (Closes: #195678)

Patch initially by Arun Raghavan
Updated to plugins-trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
CLEANFILES = $(ASSEMBLY){,.mdb}
11
11
 
12
 
banshee_references = $(DO_ADDINS_LIBS)
 
12
banshee_references = $(DO_ADDINS_LIBS) $(NDESK_DBUS_LIBS) -r:Mono.Data.Sqlite \
 
13
                     -r:System.Data
13
14
 
14
15
banshee_sources  =      \
15
16
                        AssemblyInfo.cs \
26
27
all: $(ASSEMBLY)
27
28
 
28
29
$(ASSEMBLY): $(banshee_build_sources)
29
 
        $(CSC) $(CSFLAGS) $(banshee_references) -r:Mono.Data.Sqlite -r:System.Data -pkg:ndesk-dbus-1.0 -pkg:ndesk-dbus-glib-1.0 -target:library -out:$@ $(banshee_build_sources)
 
30
        $(CSC) $(CSFLAGS) $(banshee_references) -target:library -out:$@ $(banshee_build_sources)